/* Index page specific styles */

/* Welcome banner */
.welcome-banner {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 1px solid #81c784;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.welcome-banner p {
    margin: 0;
    color: #2e7d32;
    font-size: 14px;
    line-height: 1.5;
}

.welcome-banner a {
    color: #1b5e20;
    font-weight: bold;
    text-decoration: none;
}

.welcome-banner a:hover {
    text-decoration: underline;
}

.nav-section {
    margin: 20px 0;
    padding: 20px;
    background: #e3f2fd;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.nav-section h2 {
    margin-top: 0;
    color: #1976d2;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-buttons button {
    background: #2196f3;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.nav-buttons button:hover {
    background: #1976d2;
}

/* Edit Investment Modal */
#editInvestmentModal .modal-inner {
    background: white;
    margin: 100px auto;
    padding: 30px;
    max-width: 500px;
    border-radius: 10px;
}

#editInvestmentModal .modal-inner h3 {
    margin-top: 0;
}

#editInvestmentModal .modal-field {
    margin: 15px 0;
}

#editInvestmentModal .modal-field label {
    font-weight: bold;
}

#editInvestmentModal .modal-field input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}
