/* CSS para o Plugin DJ Freelancers */

#dj-cadastro-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#dj-cadastro-form-container h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input[type="file"] {
    padding: 8px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin-right: 8px;
}

.estilos-musicais-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.rede-social-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.rede-social-item input {
    flex: 1;
}

.remove-rede-btn,
#add-rede-social-btn {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

#add-rede-social-btn {
    background: #4CAF50;
    margin-top: 10px;
}

.remove-rede-btn:hover {
    background: #d32f2f;
}

#add-rede-social-btn:hover {
    background: #45a049;
}

#submit-dj-form {
    background: #2196F3;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s;
}

#submit-dj-form:hover {
    background: #1976D2;
}

#submit-dj-form:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-top: 15px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-top: 15px;
}

/* Listagem de DJs */
.dj-listagem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.dj-busca-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.dj-busca-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.busca-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.busca-group {
    flex: 1;
}

.busca-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.busca-group input,
.busca-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.busca-btn {
    background: #2196F3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.busca-btn:hover {
    background: #1976D2;
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.dj-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.dj-card:hover {
    transform: translateY(-5px);
}

.dj-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dj-card-content {
    padding: 20px;
}

.dj-card h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.dj-card-info {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.dj-card-estilos {
    margin-bottom: 15px;
}

.estilo-tag {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.dj-card-actions {
    text-align: center;
}

.ver-perfil-btn {
    background: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.3s;
}

.ver-perfil-btn:hover {
    background: #45a049;
    text-decoration: none;
    color: white;
}

/* Perfil individual do DJ */
.dj-perfil-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.dj-perfil-header {
    text-align: center;
    margin-bottom: 30px;
}

.dj-perfil-header h1 {
    margin-bottom: 10px;
    color: #333;
}

.dj-perfil-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dj-perfil-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dj-perfil-galeria {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.info-label {
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.info-value {
    color: #333;
}

.redes-sociais-list {
    list-style: none;
    padding: 0;
}

.redes-sociais-list li {
    margin-bottom: 8px;
}

.redes-sociais-list a {
    color: #2196F3;
    text-decoration: none;
}

.redes-sociais-list a:hover {
    text-decoration: underline;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    text-decoration: none;
    color: white;
}

.galeria-fotos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.galeria-foto {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s;
}

.galeria-foto:hover {
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .busca-row {
        flex-direction: column;
        gap: 0;
    }
    
    .dj-grid {
        grid-template-columns: 1fr;
    }
    
    .dj-perfil-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rede-social-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .rede-social-item input {
        width: 100%;
    }
}

/* Estilos adicionais para badges e melhorias */
.dj-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    margin-right: 5px;
    margin-bottom: 3px;
}

.dj-badge-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.dj-badge-neutral {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.dj-card-no-image {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 14px;
}

.whatsapp-btn-small {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
}

.whatsapp-btn-small:hover {
    background: #128C7E;
    text-decoration: none;
    color: white;
}

.dj-no-results {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.dj-no-results h3 {
    color: #6c757d;
    margin-bottom: 15px;
}

.dj-no-results p {
    color: #6c757d;
}

.dj-no-results a {
    color: #2196F3;
    text-decoration: none;
}

.dj-no-results a:hover {
    text-decoration: underline;
}

.dj-resultados-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.dj-resultados-header h3 {
    color: #333;
    margin: 0;
}

.dj-pagination {
    margin-top: 30px;
    text-align: center;
}

.dj-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    background: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.dj-pagination .page-numbers:hover,
.dj-pagination .page-numbers.current {
    background: #2196F3;
    color: white;
    border-color: #2196F3;
}

.busca-btn-clear {
    background: #6c757d;
    margin-left: 10px;
}

.busca-btn-clear:hover {
    background: #545b62;
}

.busca-actions {
    margin-top: 15px;
}

.dj-perfil-not-approved {
    text-align: center;
    padding: 40px 20px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 600px;
}

