.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.input-field {
    background-color: #1F2937;
    border: 1px solid #6B7280;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    width: 100%;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: #3B82F6;
    ring: 2px;
    ring-color: rgba(59, 130, 246, 0.3);
}

/* Remove number input arrows/spinners */
.input-field[type="number"]::-webkit-outer-spin-button,
.input-field[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-field[type="number"] {
    -moz-appearance: textfield;
}

/* Custom spacing for dollar sign inputs */
.price-input {
    padding-left: 2.75rem !important; /* ~44px - provides exactly 10px spacing after $ symbol */
    font-size: 1.25rem !important; /* text-xl to match pool calculator */
    font-weight: 600 !important; /* font-semibold to match pool calculator */
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: 2px solid #667eea;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.share-entry {
    background: rgba(75, 85, 99, 0.2);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.share-entry:hover {
    background: rgba(75, 85, 99, 0.3);
}

.result-card {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.result-value {
    color: #10B981;
    font-weight: bold;
    font-size: 1.25rem;
}

.remove-btn {
    background: transparent;
    color: #EF4444;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s;
}

.remove-btn:hover {
    color: #DC2626;
}

/* Increase font size for shares input to match */
.shares-input {
    font-size: 1.25rem !important; /* text-xl to match pool calculator */
    font-weight: 600 !important; /* font-semibold to match pool calculator */
}