.info-pack{
    display: flex;
    justify-content: space-between;
}
.info-pack-left {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 1rem;
}
.custom-badge{
    color: #FF8261;
    background-color: #FFE9E3;
    border-color: #FFD9CF;
    font-size: 0.875rem;
    margin-bottom: .5rem;
}
.packs-container .objective-body{
    justify-content: flex-start;
    gap: 1rem;
}
.packs-container .objective-input select{
    border-radius: 8px;
    border-color: #E6E6E6;
    background-color: #F5F5F5;
}
.pack-card{
    border: none;
    background-color: #FAFAFA;
}

.pack-Channel-logo{
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-content{
   align-items: stretch;
}
.inner{
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color-translucent);
}
.pack-details{
    /*gap: 1rem;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.pack-details > *:first-child {
    margin-bottom: 1rem; 
}

.pack-text{
    color: #394A50;
    font-size: 1rem;
    letter-spacing: 0.25px;
}

.pack-text-subtitle{
    font-weight: bold;
    font-size: 0.75rem;
    text-align: center;
    letter-spacing: 0.04px;
}
.pack-actions{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.pack-actions > button{
    padding: 0.25rem 1.5rem;
}

.pack-slider-wrapper {
  position: relative;
  width: 120px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.pack-label {
    width: 50px;
    height: 50px;
    white-space: nowrap;
    border-radius: 8px;
    background-color: var(--bs-tertiary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.pack-range{
    font-weight: bold;
    color: #2C5974;
    font-size: 1.75rem;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1;
  padding: 0;
  line-height: 1;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

/*PackGoogleAds*/
.coverage-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}


/* Donut Chart */
.donut-chart {
  width: 50px;
  height: 50px;
  background: conic-gradient(#1A4355 var(--percent), #9DCCDC var(--percent));
  border-radius: 50%;
  position: relative;
}

.donut-chart::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  background: #f6f8ff;
  border-radius: 50%;
  z-index: 1;
}

.legend-bars {
  display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  gap: 6rem; 
}

.legend-item {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  text-align: center;
}

.legend-text{
    font-size: 0.75rem;
    letter-spacing: 0.04px;
    color: #9CA5A7;
}

.legend-line {
    width: 24px;
    height: 8px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 4px;
}

.legend-line.vert-canard-medium {
  background-color: #1A4355;
}

.legend-line.vert-canard-light {
  background-color: #9DCCDC;
}

/* Add styles for disabled navigation arrows */
.pack-slider-wrapper .arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: #999;
}

.pack-slider-wrapper .arrow.disabled:hover {
    background-color: transparent;
    transform: none;
}

.pack-slider-wrapper .arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Error and validation styles */
.alert-danger {
    border-left: 4px solid #dc3545;
    background-color: #f8d7da;
    color: #721c24;
}

.alert-success {
    border-left: 4px solid #28a745;
    background-color: #d4edda;
    color: #155724;
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Loading spinner styles */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Form validation styles */
.form-label.required::after {
    content: " *";
    color: #dc3545;
}

/* Button states */
.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Multiple select styling */
select[multiple] {
    min-height: 120px;
}

select[multiple] option {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
}

select[multiple] option:checked {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

select[multiple] option:hover {
    background-color: #f8f9fa;
}

/* Form field focus states */
.form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.modal label{
    font-weight: 700;
}