/* Custom styles for the URL shortener */

.url-card {
    transition: all 0.3s ease;
}

.url-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stats-counter {
    font-size: 2.5rem;
    font-weight: bold;
}

.short-url-container {
    background-color: var(--bs-dark);
    border-radius: 0.25rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.short-url {
    font-family: monospace;
    word-break: break-all;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--bs-info);
}

.hero-section {
    padding: 4rem 0;
    background-color: var(--bs-gray-800);
    margin-bottom: 2rem;
}

/* Responsive table for mobile devices */
@media (max-width: 768px) {
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
}

/* Form styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Custom animation for notifications */
.flash-message {
    animation: fadeInOut 4s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}
