/* Styles personnalisés pour ProspectSync */

/* Styles pour les cartes */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Styles pour les boutons */
.btn-primary {
    background-color: #2563eb; /* bg-blue-600 */
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem; /* py-2 px-4 */
    border-radius: 0.25rem; /* rounded */
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8; /* bg-blue-700 */
}

.btn-secondary {
    background-color: #e5e7eb; /* bg-gray-200 */
    color: #1f2937; /* text-gray-800 */
    font-weight: bold;
    padding: 0.5rem 1rem; /* py-2 px-4 */
    border-radius: 0.25rem; /* rounded */
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #d1d5db; /* bg-gray-300 */
}

.btn-success {
    background-color: #059669; /* bg-green-600 */
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem; /* py-2 px-4 */
    border-radius: 0.25rem; /* rounded */
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #047857; /* bg-green-700 */
}

.btn-danger {
    background-color: #dc2626; /* bg-red-600 */
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem; /* py-2 px-4 */
    border-radius: 0.25rem; /* rounded */
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #b91c1c; /* bg-red-700 */
}

/* Styles pour les badges */
.badge {
    display: inline-block;
    border-radius: 9999px; /* rounded-full */
    padding: 0.25rem 0.75rem; /* px-3 py-1 */
    font-size: 0.75rem; /* text-xs */
    font-weight: 600; /* font-semibold */
}

.badge-primary {
    background-color: #dbeafe; /* bg-blue-100 */
    color: #1e40af; /* text-blue-800 */
}

.badge-success {
    background-color: #dcfce7; /* bg-green-100 */
    color: #166534; /* text-green-800 */
}

.badge-warning {
    background-color: #fef9c3; /* bg-yellow-100 */
    color: #854d0e; /* text-yellow-800 */
}

.badge-danger {
    background-color: #fee2e2; /* bg-red-100 */
    color: #991b1b; /* text-red-800 */
}

/* Styles pour les formulaires */
.form-input {
    margin-top: 0.25rem; /* mt-1 */
    display: block;
    width: 100%;
    border-radius: 0.375rem; /* rounded-md */
    border-color: #d1d5db; /* border-gray-300 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
}

.form-input:focus {
    border-color: #3b82f6; /* focus:border-blue-500 */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); /* focus:ring focus:ring-blue-500 focus:ring-opacity-50 */
}

.form-label {
    display: block;
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    color: #374151; /* text-gray-700 */
    margin-bottom: 0.25rem; /* mb-1 */
}

/* Animation pour les notifications */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.notification-pulse {
    animation: pulse 2s infinite;
}

/* Styles pour la page de login */
.login-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.login-form {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
}
