/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 09 2026 | 04:01:14 */
/* ============================================================================
   GMAT Settings — My Account Tab
   Matches the Gurutor design: Blue #00409E, light BG, clean card layout
   ============================================================================ */

#gmat-settings-page *,
#gmat-settings-page *::before,
#gmat-settings-page *::after {
    box-sizing: border-box;
}

#gmat-settings-page {
    max-width: 100%;
    font-family: 'Nunito Sans', sans-serif;
	margin-top:-16px;
}


/* ============================================================================
   Section Card
   ============================================================================ */

.gmat-settings-section {
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.gmat-settings-section__title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #003582 !important;
    margin: 0 0 16px;
    padding-bottom: 0;
}


/* ============================================================================
   Field Rows — 2-column grid
   ============================================================================ */

.gmat-settings-row {
    display: flex;
    gap: 16px;

}
.gmat-settings-section .gmat-settings-row:not(:nth-child(3)):not(:nth-child(4)) {
    margin-bottom: 16px;
}
.gmat-settings-row--half {
	margin-top:16px;
}
.gmat-settings-row--half .gmat-settings-field {
    flex: 0 0 calc(50% - 10px);
}

.gmat-settings-field {
    flex: 1;
    min-width: 0;
}

.gmat-settings-field label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 4px;
}


/* ============================================================================
   Inputs
   ============================================================================ */
.gmat-settings-row br {
  display:none; 
}
#gmat-settings-page .gmat-settings-input,
#gmat-settings-page .gmat-settings-select-visible {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 10px !important;
    font-size: 14px;
	height:47px;
    color: #222222;
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
    -webkit-appearance: none;
    appearance: none;
}

.gmat-settings-input:focus,
.gmat-settings-select-visible:focus {
    border-color: #00409E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 64, 158, 0.1);
}

.gmat-settings-input::placeholder {
    color: #aaa;
}

/* Make select dropdown show the native arrow */
.gmat-settings-select-visible {
    appearance: auto;
    -webkit-appearance: auto;
    cursor: pointer;
}

/* Read-only fields for the hours display */
.gmat-settings-input[readonly] {
    background: #f5f6f8;
    cursor: pointer;
}


/* ============================================================================
   Actions — Save Button + Message
   ============================================================================ */

.gmat-settings-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 8px;
	flex-direction:column;
}

.gmat-settings-btn-save {
    padding: 12px 42px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
   background: #4F80FF;
    color: #fff;
/*     box-shadow: 0 3px 10px rgba(74, 123, 247, 0.25); */
    transition: all 0.25s ease;
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.gmat-settings-btn-save:hover {
    background-color: #FBB03B;
}

.gmat-settings-btn-save:active {
/*     transform: scale(0.97); */
	 background-color: #FBB03B;
}
.gmat-settings-actions p {
	width:100%;
    display: flex;
    justify-content: flex-end;
	margin-bottom:unset;
}
.gmat-settings-btn-save:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}
#gmat-s-weekly-hours-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 10px !important;
  font-size: 14px;
  color: #222222;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.gmat-settings-btn-save.loading::after {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: gmat-settings-spin 0.6s linear infinite;
    margin-left: 8px;
    flex-shrink: 0;
}

@keyframes gmat-settings-spin {
    to { transform: rotate(360deg); }
}


/* ============================================================================
   Status Message
   ============================================================================ */

.gmat-settings-message {
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.gmat-settings-message.success {
    color: #0d8a3e;
}

.gmat-settings-message.error {
    color: #dc3545;
}


/* ============================================================================
   WooCommerce Sidebar Active State Override
   ============================================================================ */

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--gmat-settings.is-active a {
    color: #00409E;
    font-weight: 700;
}


/* ============================================================================
   Responsive
   ============================================================================ */

@media (max-width: 600px) {
    .gmat-settings-section {
        padding: 20px 16px 14px;
    }

    .gmat-settings-row {
        flex-direction: column;
        gap: 14px;
    }

    .gmat-settings-row--half .gmat-settings-field {
        flex: 1;
    }

    .gmat-settings-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gmat-settings-btn-save {
        width: 100%;
    }

    .gmat-settings-message {
        text-align: center;
    }
}
@media (max-width:767px)
{
.woocommerce-account .my-account-holder .elementor-element-populated {
  padding:20px !important;
}
	}
