/* Wrapper Styling */

.user-registration-MyAccount-content__body > :nth-child(3) {
    display: none;
}

.megamenu{
	padding:15px !important;
}

.megamenu .aa{
	padding:0px 15px;
}

.investor-dashboard {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 1300px;
    margin: 30px auto;
    font-family: 'Arial', sans-serif;
    border: 1px solid #e0e0e0;
}

/* Grid Layout */
.investor-dashboard .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Individual Detail Box */
.investor-dashboard .detail-box {
    background-color: #fff;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Key Label Styling */
.investor-dashboard .detail-box strong {
    color: #555;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* Value Text Styling */
.investor-dashboard .detail-box span {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .investor-dashboard {
        padding: 20px;
    }

    .investor-dashboard .grid {
        grid-template-columns: 1fr;
    }
}


/* Installment Section Styling */
.investor-installments {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 1300px;
    margin: 30px auto;
    border: 1px solid #e0e0e0;
}

/* Installment Grid */
.investor-installments .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Installment Box */
.investor-installments .installment-box {
    background-color: #fff;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Installment Title */
.investor-installments .installment-box strong {
    color: #555;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* Installment Status */
.investor-installments .installment-box span {
    font-size: 16px;
    font-weight: 500;
}

/* Paid Status */
.investor-installments .paid {
    color: #28a745;
    font-weight: 600;
}

/* Unpaid Status */
.investor-installments .unpaid {
    color: #dc3545;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .investor-installments {
        padding: 20px;
    }

    .investor-installments .grid {
        grid-template-columns: 1fr;
    }
}

    /* Responsive Table Styling */
.responsive-table {
	margin-top:15px;
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

/* Table Design */
.responsive-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

/* Table Header */
.responsive-table thead {
    background: #FDB009; /* Primary Blue */
    color: #ffffff;
    font-weight: bold;
}

/* Table Header & Data Cell Styling */
.responsive-table th, .responsive-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

/* Zebra Striping for Rows */
.responsive-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

/* Hover Effect */
.responsive-table tbody tr:hover {
    background: #fdb0092a;
    transition: 0.3s ease-in-out;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .responsive-table table {
        min-width: 500px;
    }
}

