/* Split Bills specific styles extending the main theme */

.app-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Disable hover animation for interactive dashboard cards */
.app-container .card:hover {
    transform: none;
}

.card h2 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
    color: var(--text-color);
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

input, select {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    box-sizing: border-box;
    background-color: white;
    color: var(--text-color);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

input[type="text"], input[type="number"], select {
    flex: 1;
}

.full-width {
    width: 100%;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
}

.list li:last-child {
    border-bottom: none;
}

.transfer-info {
    display: flex;
    flex-direction: column;
}

.transfer-desc {
    font-size: 0.875rem;
    color: #64748b;
}

.graph-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    background-color: #f8fafc;
    border-radius: 0.5rem;
    padding: 10px;
    position: relative;
    border: 1px solid #e2e8f0;
}

canvas {
    max-width: 100%;
    height: auto;
    cursor: pointer;
}
