/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    margin-top: 50px;
}

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

.card-title {
    font-weight: bold;
    font-size: 1.5em;
}

.list-group-item {
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.list-group-item h5 {
    font-weight: bold;
}

.list-group-item .small {
    font-size: 0.9em;
    color: #555;
}

.btn-primary, .btn-secondary, .btn-success {
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 1em;
}

.btn-primary {
    background-color: #007bff;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-success {
    background-color: #28a745;
}

.signature-pad {
    border: 2px dashed #007bff;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
}

.form-control {
    border-radius: 5px;
}

.alert {
    border-radius: 5px;
}

.thumbnail {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}
