/* Basic styling for the Sanad Digital Signing application */

body {
    background-color: #f8f9fa;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
}

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

.progress {
    height: 25px;
}

.progress-bar {
    font-weight: bold;
}

.btn-primary {
    background-color: #0056b3;
}

.btn-primary:hover {
    background-color: #003d7a;
}

/* Styling for the signature table */
.table-bordered {
    border-radius: 5px;
    overflow: hidden;
}

/* Custom styling for form elements */
.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

/* Styling for alerts */
.alert {
    border-radius: 5px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

