/* Phone Input Component Styles
-------------------------------------------------- */
.phone-input-group {
    margin-bottom: 20px;
}

.country-selector {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 10px;
}

.country-option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    margin: 0;
}

.country-option:hover {
    background: #e9ecef;
}

.country-option input[type="radio"] {
    margin-right: 8px;
    margin-top: 0;
}

.country-option input[type="radio"]:checked + .country-flag {
    transform: scale(1.1);
}

.country-flag {
    font-size: 18px;
    margin-right: 6px;
    transition: transform 0.2s ease;
}

.phone-input-wrapper {
    position: relative;
}

.phone-prefix {
    background: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

.phone-number-input {
    border-left: 0;
    font-size: 16px;
    padding: 12px;
}

.phone-number-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.phone-help-text {
    margin-top: 8px;
    color: #6c757d;
    font-size: 13px;
}

.phone-help-text i {
    margin-right: 5px;
    color: #007bff;
}

/* Modal specific styling */
.modal .phone-input-group {
    margin-bottom: 15px;
}

.modal .country-selector {
    margin-bottom: 10px;
}

/* Sticky footer styles
-------------------------------------------------- */
nav {
  display: flex;
}
  .footer {
	/* position: absolute; */
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
	background-color: #f5f5f5;
  }

/* .form-container {
     min-height: 77ch; 
} */

/* loader */
.lds-dual-ring {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  top: 50vh;
  position: relative;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Transparent Overlay */
#loading-conteiner:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
#loading-conteiner:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

#loading-conteiner:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* endloader */

div#loading-container {
    display: block;
    background-color: black;
    width: 100%;
    height: 100%;
    position: fixed;
    margin:  0 auto;
    border: 1px solid red;
    opacity: 0.6;
    top: 0;
    left: 0;
    z-index: 1000;
}


.panel-heading{
	color:rgba(255, 0, 0, 0.733)!important;
	font-weight: 700;
}



/* The Modal (background) */
#dlgAviabill .modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 999;
	/* Sit on top */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
}

/* Modal Content/Box */
#dlgAviabill .modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	/* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 26%;
	/* Could be more or less, depending on screen size */
}

/* The Close Button */
/* .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
} */

/* .close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
} */

#dlgAviabill .select2 {
	width:95%!important;
}

#dlgAviabill .col{
	height: 60px;
}

.hasAviabill {
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 20px, black 20px, black 40px);
  background-image: repeating-linear-gradient(-45deg, transparent 0 20px, #00a65a 20px 40px);
  display: inline-flex;
  width: 100%;
  background-color: #0fb96b;
  color: white;
}

/*
  .noAviabill {
   display: inline-flex;
  width: 95%;
  background-color: #da5252fa;
  border-radius: 3px;
  padding: 2px 0px 0px 5px;
  color: white;
  filter: drop-shadow(-2px 2px 3px #000000);
  font-weight: 600;
  cursor: pointer; 
*/

.noAviabill {
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 20px, black 20px, black 40px);
  background-image: repeating-linear-gradient(-45deg, transparent 0 20px, #f70000 20px 40px);
  display: inline-flex;
  width: 100%;
  background-color: #da5252fa;
  color: white;
  
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.dt-search {
  float: right;
}

dashboard td{
  padding: 1px!important;
  white-space: nowrap!important;
}

.topbar {
  margin: 0;
  float: right;
  padding: 10px;
  margin-left: auto;
  order: 2;
}

.topgroup{
  padding:10px;
}

.topbar i {
  line-height: 14px;
  color: #31f403;
  font-size: 13px;
}

.topgroup{
  color:white;
}

#pickups{
  display: block;  
}

/* General Styles */
.tkt-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 972px;
  border-bottom: 2px dashed;
  margin-top: 25px;
  position: relative;
  overflow: hidden; /* Ensure content doesn't overflow */
  background-image: url('/transportation_assets/img/logo-light.png');
  background-size: auto; /* Ensure the background image covers the entire element */
  background-position: center; /* Center the background image */
  background-repeat: repeat-x; /* Prevent the background image from repeating */
  filter: grayscale(100%);
}

.tkt-body {
  position: relative;
  z-index: 1; /* Ensure content is above the background image */
  background: rgba(255, 255, 255, 0.9); /* Apply a semi-transparent background to the content */
}

.tkt-main {
  display: flex;
  flex-direction: row;
}

.tkt-right {
  margin-left: auto;
  order: 2;
}
.tkt-left {
  display: flex;
  flex-direction: row;
  border-right: 3px dashed;
}

.tkt-left > .qr {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  width: 160px;
}

.tkt-right > .qr {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  width: 165px;
}


.tkt-info > line {
  display: block;
  width: 610px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  margin: 0px 20px 11px 15px;
  font-size: 10px;
  margin: 14px;
  color: #adadad;
}

.tkt-info > line > value {
  color:black;
  font-size: 1.8em;
  padding: 0px 0px 0px 15px;
}

.qr > * {
  padding-left: 5px;
}

.qr-code {
  width: 151px;
  height: 151px;
  margin-left: 10px;
}

.tracking-no {
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tkt-bottom, .tkt-top {
  text-align: center;
  font-size: 9pt;
  color: #454545;
  margin-left: 6px;
  margin-right: 6px;
  letter-spacing: 2px;
  text-transform: uppercase;
  vertical-align: middle;
  height: 20px;
  white-space: nowrap;
}

.tkt-bottom > i {
color: black;
padding-left: 10px;
letter-spacing: 5px;
}

/* Print Styles */
@media print {
  .tkt-wrapper {
    
    background-image: url('/transportation_assets/img/logo-light.png') !important;
    background-size: auto !important;
    background-position: center !important;
    background-repeat: repeat-x !important;
    filter: grayscale(100%) !important;
    page-break-inside: avoid !important; /* Prevent page break inside the element */
  }
  
  .tkt-body {
    background: rgba(255, 255, 255, 0.9) !important;
  }
  .tkt-top, .tkt-bottom {
    color: #d5d5d5 !important; /* Ensure print color */
  }
  
}


/*----------------*/


/*----------------*/



/* Social Authentication Styles */
.btn-social {
    position: relative;
    padding-left: 44px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-social > :first-child {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 32px;
    line-height: 34px;
    font-size: 1.6em;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.2);
}

/* Google Sign-In Button Styles */
.google-signin-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 24px !important;
    background: white !important;
    border: 1px solid #dadce0 !important;
    border-radius: 4px !important;
    color: #3c4043 !important;
    text-decoration: none !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: box-shadow 0.15s ease-in-out !important;
    box-shadow: 0 1px 3px rgba(60,64,67,0.30), 0 4px 8px 3px rgba(60,64,67,0.15) !important;
    margin-bottom: 10px !important;
    min-width: 240px !important;
    cursor: pointer !important;
}

.google-signin-btn:hover {
    box-shadow: 0 2px 6px rgba(60,64,67,0.40), 0 8px 16px 6px rgba(60,64,67,0.25) !important;
    color: #3c4043 !important;
    text-decoration: none !important;
}

.google-signin-btn:focus {
    outline: none !important;
    box-shadow: 0 2px 6px rgba(60,64,67,0.40), 0 8px 16px 6px rgba(60,64,67,0.25) !important;
}

.google-signin-btn:active {
    box-shadow: 0 1px 2px rgba(60,64,67,0.30), 0 2px 4px 1px rgba(60,64,67,0.15) !important;
}

/* Google Logo SVG Styles */
.google-signin-btn svg {
    margin-right: 12px !important;
    flex-shrink: 0 !important;
}

/* Registration Section Styles */
.registration-section {
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.registration-section:hover::before {
    left: 100%;
}

.registration-btn {
    position: relative;
    overflow: hidden;
}

.registration-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4) !important;
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%) !important;
    text-decoration: none !important;
    color: white !important;
}

.registration-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3) !important;
}

.registration-btn:focus {
    outline: none !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3), 0 0 0 3px rgba(40, 167, 69, 0.2) !important;
}

/* Registration button icon animation */
.registration-btn i {
    transition: transform 0.3s ease;
}

.registration-btn:hover i {
    transform: scale(1.1);
}

/* Registration Submit Button Styles */
.registration-submit-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    border: none !important;
    padding: 15px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.registration-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4) !important;
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%) !important;
    text-decoration: none !important;
    color: white !important;
}

.registration-submit-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3) !important;
}

.registration-submit-btn:focus {
    outline: none !important;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3), 0 0 0 3px rgba(0, 123, 255, 0.2) !important;
}

.registration-submit-btn i {
    transition: transform 0.3s ease !important;
}

.registration-submit-btn:hover i {
    transform: scale(1.1) !important;
}

/* Phone Input Styling */
.phone-input-container {
    position: relative;
}

.country-selector {
    margin-bottom: 10px;
}

.country-selector label {
    font-weight: normal;
    margin-right: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.country-selector input[type="radio"] {
    margin-right: 8px;
}

.phone-input-group {
    position: relative;
}

.phone-input-group .input-group-addon {
    background: #f8f9fa;
    border-color: #ced4da;
    font-weight: 600;
    color: #495057;
}

.phone-input-group input.form-control {
    border-left: 0;
}

.phone-input-group input.form-control:focus {
    border-left: 0;
    box-shadow: none;
}

/* Phone input validation states */
.phone-input-group input.form-control.success {
    border-color: #28a745;
    background-color: #f8fff9;
}

.phone-input-group input.form-control.error {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.phone-input-group input.form-control.success:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.phone-input-group input.form-control.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Flag icons (if you want to add them) */
.flag-icon {
    display: inline-block;
    width: 16px;
    height: 12px;
    margin-right: 5px;
    background-size: cover;
    border-radius: 2px;
}

.flag-icon-ge {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2"><rect width="3" height="2" fill="%23ffffff"/><rect width="3" height="0.67" fill="%23ff0000"/><rect y="1.33" width="3" height="0.67" fill="%23000000"/></svg>');
}

.flag-icon-us {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2"><rect width="3" height="2" fill="%23b22234"/><rect y="0.15" width="3" height="0.15" fill="%23ffffff"/><rect y="0.45" width="3" height="0.15" fill="%23ffffff"/><rect y="0.75" width="3" height="0.15" fill="%23ffffff"/><rect y="1.05" width="3" height="0.15" fill="%23ffffff"/><rect y="1.35" width="3" height="0.15" fill="%23ffffff"/><rect y="1.65" width="3" height="0.15" fill="%23ffffff"/><rect width="1.2" height="1.05" fill="%233c3b6e"/></svg>');
}

/* Phone help text styling */
.phone-help-text {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.phone-help-text.valid {
    color: #28a745;
}

.phone-help-text.invalid {
    color: #dc3545;
}

/* Account Type Selection Styling */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.radio-option:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.radio-option input[type="radio"] {
    margin: 0;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-content {
    color: #007bff;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: #007bff;
    background: #e7f3ff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.radio-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.radio-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.radio-option:has(input[type="radio"]:checked) .radio-content strong {
    color: #007bff;
}

.radio-option:has(input[type="radio"]:checked) .radio-content p {
    color: #0056b3;
}

/* Account Fields Styling */
.account-fields {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.account-info-display {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

/* Settings Sections Styling */
.settings-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

/* Account Type Notice Styling */
.account-type-notice {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.15);
}

.account-type-notice__icon {
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 2px;
}

.account-type-notice__icon i {
    font-size: 24px;
    color: #856404;
}

.account-type-notice__content {
    flex: 1;
}

.account-type-notice__title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #856404;
}

.account-type-notice__text {
    margin: 0;
    font-size: 14px;
    color: #856404;
    line-height: 1.5;
}

.account-type-notice__text strong {
    font-weight: 700;
    color: #6c5500;
}

/* Account Information Section Styling */
.account-info-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.account-info-display h5 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-info-display .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.account-info-display .info-row:last-child {
    border-bottom: none;
}

.account-info-display .info-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 13px;
    min-width: 120px;
}

.account-info-display .info-value {
    color: #212529;
    font-weight: 500;
    text-align: right;
    flex: 1;
}

.account-info-display .info-value i {
    margin-right: 5px;
    color: #007bff;
}

/* Account Type Badge Styling */
.account-type-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.account-type-badge--personal {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.account-type-badge--company {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

/* Enhanced Form Group Styling */
.account-settings__form-group {
    margin-bottom: 12px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.account-settings__form-group:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.account-settings__label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 4px;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.account-settings__label i {
    margin-right: 6px;
    color: #6c757d;
    width: 14px;
    font-size: 12px;
}

.account-settings__value {
    padding: 4px 0;
}

.account-settings__static {
    margin: 0;
    color: #212529;
    font-weight: 500;
    line-height: 1.5;
}

.account-settings__muted {
    color: #6c757d !important;
    font-size: 12px;
    font-weight: 400;
}

/* Status Badge Enhancements */
.account-settings__status {
    display: inline-flex;
    align-items: center;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-left: 6px;
}

.account-settings__status i {
    margin-right: 3px;
    font-size: 9px;
}

/* Button Group Styling */
.account-settings__button-group {
    margin-top: 6px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.account-settings__button-group .btn {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 500;
}

/* Account Type Badge Styles */
.account-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
}

.account-type-badge i {
    font-size: 14px;
}

.account-type-badge--company {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.account-type-badge--personal {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.account-type-badge--pending {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #8b4513;
}

.account-type-display .account-settings__label {
    color: #555;
    font-weight: 600;
}

.settings-section:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.settings-section--danger {
    border-left: 4px solid #dc3545;
}

.settings-section--danger .settings-section__title {
    color: #dc3545;
}

.settings-section__header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 25px;
    border-bottom: 1px solid #dee2e6;
}

.settings-section__title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-section__title i {
    font-size: 18px;
    opacity: 0.8;
}

.settings-section__subtitle {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.4;
}

.settings-section__content {
    padding: 25px;
}
