/* public/assets/css/custom.css */

/* General styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

.container {
    max-width: 1200px;
}

/* Cards styling */
.card {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-header {
    font-weight: 500;
}

/* Form styling */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* OTP input styling */
input[type="text"][maxlength="6"] {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
}

/* Buttons */
.btn {
    border-radius: 0.25rem;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Home page jumbotron */
.jumbotron {
    background-color: #f8f9fa;
    border-radius: 0.3rem;
}

/* Tables */
.table th {
    font-weight: 600;
    border-top: none;
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Confirmation page icons */
.display-1 {
    font-size: 5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-title {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .display-1 {
        font-size: 4rem;
    }
}

/* Bootstrap Icons integration */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css");