/* Add this CSS for alert styles */
/* Dashboard Styles */
.dashboard-container {
  padding: 8rem 5% 4rem;
  min-height: 100vh;
  background: var(--gray-color);
  width: 100%;
  padding-top: 6rem;
}

.dashboard-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 900px;
  width: 100%;
  margin: 0 auto 10px;
}

.dashboard-tabs .tab-btn {
  padding: 0.8rem 1.5rem;
  background: var(--light-color);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
  max-width: 200px;
  color: var(--dark-color);
}

.dashboard-tabs .tab-btn:hover {
  background: #f0f0f0;
}

.dashboard-tabs .tab-btn.active {
  background: var(--primary-color);
  color: var(--light-color);
}

/* New Post Form */
.post-form-container {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.post-form-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

#post-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#post-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

#post-form label {
  font-weight: 500;
  color: var(--dark-color);
}

#post-form textarea {
  min-height: 150px;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
}

#post-form input[type="url"] {
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
}

#post-form input[type="datetime-local"] {
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
}

#post-form input[type="text"] {
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.submit-btn {
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background: #e62548;
}

/* Scheduled Posts Table */
.scheduled-posts-container {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.scheduled-posts-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.table-container {
  overflow-x: auto;
}

.scheduled-posts-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.scheduled-posts-table th,
.scheduled-posts-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.scheduled-posts-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: var(--dark-color);
}

.scheduled-posts-table tr:hover {
  background-color: #f8f9fa;
}

.scheduled-posts-table a {
  color: var(--primary-color);
  text-decoration: none;
}

.scheduled-posts-table a:hover {
  text-decoration: underline;
}

/* Limitar a largura da coluna de mídia */
.scheduled-posts-table td:nth-child(2) {
  max-width: 200px; /* Limite a largura máxima da coluna de mídia */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; /* Impede a quebra de linha */
}

/* Limitar a largura da coluna de descrição */
.scheduled-posts-table td:nth-child(1) {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Connect with TikTok Button */
.connect-tiktok-btn {
  padding: 0.8rem 1.5rem;
  background: var(--light-color);
  color: var(--dark-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.connect-tiktok-btn:hover {
  background: #f0f0f0;
}

/* Alert Styles */
.alert-container {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.alert-success {
  background-color: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background-color: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.alert-warning {
  background-color: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.alert-info {
  background-color: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

/* Responsive Design for Dashboard */
@media (max-width: 768px) {
  .dashboard-tabs {
    flex-direction: column;
    padding: 0 1rem;
  }

  .dashboard-tabs .tab-btn {
    max-width: 100%;
  }

  .scheduled-posts-container {
    margin: 0 1rem;
    padding: 1rem;
  }

  .scheduled-posts-table {
    font-size: 0.9rem;
  }

  .scheduled-posts-table th,
  .scheduled-posts-table td {
    padding: 0.75rem;
  }
}

/* Estilo para o botão de exclusão */
.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: transform 0.2s;
}

.delete-btn:hover {
    transform: scale(1.2);
}

/* Ajuste na largura da última coluna */
.scheduled-posts-table td:last-child {
    width: 50px;
    text-align: center;
}

/* Estilo para a coluna Postado */
.scheduled-posts-table td:nth-child(4) {
    width: 80px;
    text-align: center;
}

/* Estilos melhorados para o perfil */
.profile-container {
    background: linear-gradient(145deg, #ffffff, #f0f2f5);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.profile-info {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(300px, 2fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: start;
    padding: clamp(0.5rem, 2vw, 1rem);
}

.profile-avatar {
    position: sticky;
    top: 100px;
    text-align: center;
    background: white;
    padding: clamp(1rem, 3vw, 2rem);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.profile-avatar img {
    width: clamp(120px, 25vw, 200px);
    height: clamp(120px, 25vw, 200px);
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(254, 44, 85, 0.2);
    transition: transform 0.3s ease;
    margin: 0 auto 1.5rem;
}

.profile-avatar img:hover {
    transform: scale(1.05);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: clamp(0.5rem, 2vw, 1rem);
}

.stat-card {
    background: white;
    padding: clamp(0.8rem, 2vw, 1.2rem);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(254, 44, 85, 0.15);
    border-color: var(--primary-color);
}

.stat-value {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
}

.stat-label {
    color: #666;
    font-size: clamp(0.7rem, 1.5vw, 0.95rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-details {
    background: white;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.profile-name {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--dark-color);
    margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.profile-username {
    color: var(--primary-color);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
}

.profile-bio {
    margin: clamp(0.8rem, 2vw, 1rem) 0;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.profile-bio::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.profile-bio p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    padding: 0 1rem;
}

.profile-links {
    margin-top: auto;
    text-align: center;
    padding-top: 1rem;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: min(300px, 90%);
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(45deg, var(--primary-color), #ff6b81);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(254, 44, 85, 0.3);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.profile-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(254, 44, 85, 0.4);
    background: linear-gradient(45deg, #ff6b81, var(--primary-color));
}

.profile-link i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Breakpoints refinados */
@media (max-width: 1400px) {
    .profile-container {
        margin: 1rem auto;
    }
}

@media (max-width: 1200px) {
    .profile-info {
        grid-template-columns: 250px 1fr;
    }
}

@media (max-width: 992px) {
    .profile-container {
        padding: 1.5rem;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }

    .profile-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .profile-avatar {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .profile-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .profile-container {
        padding: 1rem;
    }

    .profile-avatar {
        max-width: 400px;
        padding: 1rem;
    }

    .profile-details {
        text-align: center;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .profile-container {
        padding: 1rem;
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
    }

    .profile-avatar {
        padding: 0.8rem;
    }

    .profile-avatar img {
        width: 120px;
        height: 120px;
    }

    .profile-stats {
        gap: 0.5rem;
    }

    .stat-card {
        padding: 0.8rem;
    }
}

@media (max-width: 400px) {
    .profile-container {
        padding: 0.8rem;
        margin: 0;
        width: 100%;
    }

    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-avatar img {
        width: 100px;
        height: 100px;
    }

    .stat-card {
        padding: 0.6rem;
    }
}

@media (max-width: 320px) {
    .profile-container {
        padding: 0.5rem;
    }

    .profile-avatar {
        padding: 0.5rem;
    }

    .profile-avatar img {
        width: 80px;
        height: 80px;
    }

    .profile-details {
        padding: 0.8rem;
    }
}

@media (min-width: 1600px) {
    .profile-info {
        grid-template-columns: 400px 1fr;
    }
}

/* Ajuste na largura do título principal */
.dashboard-container h1 {
    max-width: 900px;
    width: 100%;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    color: var(--dark-color);
}

/* Ajuste no espaçamento do conteúdo das abas */
.tab-content {
    margin-top: 10px;
}

/* Estilos para as novas funcionalidades */
.creator-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.creator-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.creator-nickname {
    font-weight: 500;
    color: var(--dark-color);
}

.checkbox-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Estilo para a seção de divulgação */
.disclosure-section {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Aplicar o mesmo estilo dos outros checkboxes */
.toggle-label {
    display: flex;
    align-items: center;
    user-select: none;
    color: var(--dark-color);
    transition: color 0.3s ease;
    cursor: pointer;
}

.toggle-label input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-label input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.toggle-label input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.toggle-label input[type="checkbox"]:hover {
    border-color: var(--primary-color);
}

.toggle-label input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(254, 44, 85, 0.2);
}

.toggle-label:hover {
    color: var(--primary-color);
}

/* Ajuste no espaçamento das opções de divulgação */
.disclosure-options {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.disclosure-options .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.disclosure-options .checkbox-label input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-top: 3px; /* Alinha com o texto */
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.disclosure-options .checkbox-label input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.disclosure-options .checkbox-label input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.disclosure-options .checkbox-label input[type="checkbox"]:hover {
    border-color: var(--primary-color);
}

.disclosure-options .checkbox-label input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(254, 44, 85, 0.2);
}

/* Estilo para o texto do checkbox */
.disclosure-options .checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.disclosure-options .checkbox-text strong {
    color: var(--dark-color);
    font-weight: 500;
}

.disclosure-options .checkbox-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Hover state para o label inteiro */
.disclosure-options .checkbox-label:hover input[type="checkbox"] {
    border-color: var(--primary-color);
}

.disclosure-options .checkbox-label:hover .checkbox-text strong {
    color: var(--primary-color);
}

.disclosure-message {
    margin-top: 1rem;
    padding: 0.5rem;
    background: #e9ecef;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #666;
}

.warning-text {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.terms-agreement {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.char-count {
    position: absolute;
    right: 1rem;
    bottom: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

/* Estilos para pré-visualização de mídia */
.media-preview-container {
    margin-top: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.preview-header {
    background: #f8f9fa;
    padding: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.preview-header h4 {
    margin: 0;
    color: var(--dark-color);
}

.preview-content {
    padding: 1rem;
}

.media-preview {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 1rem;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}

.media-preview video,
.media-preview img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.media-metadata {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
}

.metadata-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.metadata-item:last-child {
    border-bottom: none;
}

.metadata-label {
    font-weight: 500;
    color: var(--dark-color);
}

.metadata-value {
    color: #666;
}

/* Estilo para o select de privacidade */
.privacy-select-container {
    position: relative;
    width: 100%;
}

.privacy-select-container select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.privacy-select-container::after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-color);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.privacy-select-container select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(254, 44, 85, 0.1);
}

.privacy-select-container select:hover {
    border-color: var(--primary-color);
}

.privacy-select-container select option {
    padding: 1rem;
    background-color: white;
    color: var(--dark-color);
}

/* Ícones para as opções */
.privacy-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-option i {
    width: 1.2rem;
    text-align: center;
}

/* Estilo para o label do select */
.privacy-select-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

/* Estilo personalizado para os checkboxes de interação */
.checkbox-group .checkbox-label input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-group .checkbox-label input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-group .checkbox-label input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.checkbox-group .checkbox-label input[type="checkbox"]:hover {
    border-color: var(--primary-color);
}

.checkbox-group .checkbox-label input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(254, 44, 85, 0.2);
}

/* Estilo para o label do checkbox */
.checkbox-group .checkbox-label {
    display: flex;
    align-items: center;
    user-select: none;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.checkbox-group .checkbox-label:hover {
    color: var(--primary-color);
}

/* Estilo para o toggle switch */
.toggle-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc; /* Cinza quando não selecionado */
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-color); /* Vermelho quando selecionado */
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Adicionar efeito hover */
.toggle-switch:hover input:not(:checked) + .toggle-slider {
    background-color: #b3b3b3;
}

.toggle-switch:hover input:checked + .toggle-slider {
    background-color: #e62548; /* Versão mais escura da cor primária no hover */
}

/* Estilo para a mensagem de informação */
.disclosure-info {
    margin-top: 1rem;
}

.info-message {
    background-color: #EEF2FF;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-message i {
    color: #0044FF;
    margin-right: 0.5rem;
}

.info-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.disclosure-description {
    color: #666;
    margin-bottom: 1rem;
}

/* Estilo para as opções de divulgação */
.disclosure-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.checkbox-description {
    font-size: 0.9rem;
    color: #666;
}

/* Estilo para a caixa de confirmação de música */
#music-confirmation-box {
    margin-top: 1rem;
}

#music-confirmation-box .info-message {
    background-color: #EEF2FF;
    padding: 1.5rem;
}

#music-confirmation-box h4 {
    color: var(--dark-color);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

#music-confirmation-box p {
    margin: 0.5rem 0;
    line-height: 1.4;
}

#music-confirmation-box .info-subtitle {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

/* Estilo para o link */
#music-confirmation-link {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

#music-confirmation-link:hover {
    text-decoration: underline;
}

/* Estilo para a seção de interação */
.interaction-options {
    margin: 1rem 0;
}

.interaction-options label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--dark-color);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-group .checkbox-label {
    display: flex;
    align-items: center;
    min-width: 120px;
    flex: 1;
    max-width: calc(33.333% - 0.67rem); /* Ajuste para o gap */
}

/* Responsividade */
@media (max-width: 768px) {
    .checkbox-group {
        flex-direction: column;
        gap: 0.8rem;
    }

    .checkbox-group .checkbox-label {
        max-width: 100%;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
    .interaction-options {
        margin: 0.8rem 0;
    }

    .checkbox-group .checkbox-label {
        font-size: 0.9rem;
    }
}

/* Estilos para o container de música automática */
.auto-music-container {
    margin: 1rem 0;
}

.auto-music-container .checkbox-label {
    display: flex;
    align-items: center;
    user-select: none;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.auto-music-container .checkbox-label input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auto-music-container .checkbox-label input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.auto-music-container .checkbox-label input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.auto-music-container .checkbox-label input[type="checkbox"]:hover {
    border-color: var(--primary-color);
}

.auto-music-container .checkbox-label input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(254, 44, 85, 0.2);
}

.auto-music-container .checkbox-label:hover {
    color: var(--primary-color);
}

.auto-music-container .help-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    margin-left: 26px;
}
