/**
 * Styles for JustTaxJo Pro custom pages.
 */

/* Page Container */
.justtaxjo-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

.justtaxjo-page-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.justtaxjo-page-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Login & Registration Pages */
.justtaxjo-login-links,
.justtaxjo-register-links {
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.justtaxjo-login-links a,
.justtaxjo-register-links a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.justtaxjo-login-links a:hover,
.justtaxjo-register-links a:hover {
    text-decoration: underline;
}

/* Dashboard Pages */
.justtaxjo-dashboard-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.justtaxjo-dashboard-sidebar {
    flex: 0 0 25%;
    padding: 0 15px;
}

.justtaxjo-dashboard-content {
    flex: 0 0 75%;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .justtaxjo-dashboard-sidebar,
    .justtaxjo-dashboard-content {
        flex: 0 0 100%;
    }
    
    .justtaxjo-dashboard-sidebar {
        margin-bottom: 30px;
    }
}

/* Services Page */
.justtaxjo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .justtaxjo-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .justtaxjo-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Cart & Checkout Pages */
.justtaxjo-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.justtaxjo-cart-table th,
.justtaxjo-cart-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.justtaxjo-cart-table th {
    background-color: #f9f9f9;
    font-weight: 600;
}

.justtaxjo-cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.justtaxjo-checkout-form {
    max-width: 800px;
    margin: 0 auto;
}

.justtaxjo-form-row {
    margin-bottom: 20px;
}

.justtaxjo-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.justtaxjo-form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.justtaxjo-form-submit {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.justtaxjo-form-submit:hover {
    background-color: #005f8b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .justtaxjo-page-container {
        padding: 20px 15px;
    }
    
    .justtaxjo-page-content {
        padding: 20px;
    }
    
    .justtaxjo-page-title {
        font-size: 24px;
    }
    
    .justtaxjo-cart-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .justtaxjo-cart-actions .button {
        width: 100%;
        text-align: center;
    }
}
