@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --primary-color: #0065f2;
    --primary-dark: #0052cc;
    --light-bg: #cce5ff;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: #1a1a1a;
}

.modal-body {
    padding: 1.5rem;
}

/* Step Navigation */
.btn-back {
    background: none;
    border: none;
    color: #0066ff;
    font-size: 1.25rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.btn-back:hover {
    background-color: #f8f9fa;
}

.modal-step-title {
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* Person Selection */
.person-card {
    cursor: pointer;
    transition: all 0.2s;
}

.person-card:hover {
    background-color: #f8f9fa;
}

.person-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.person-card .fa-check-circle {
    display: none;
    font-size: 1.25rem;
}

.person-card.selected {
    border-color: #0066ff;
    background-color: #F2F8FF;
}

.person-card.selected .fa-check-circle {
    display: block;
}

.person-card.selected .fa-circle {
    display: none;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0px;
}

.form-control:focus,
.form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: #0066ff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0px;
}

.btn-primary:hover {
    background-color: #0052cc;
}

.btn-outline-primary {
    border: 1px solid #dee2e6;
    color: #1a1a1a;
    text-align: left;
}

.btn-outline-primary:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #1a1a1a;
}

/* Checkmark Animation */
.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e8f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.checkmark-circle i {
    font-size: 2.5rem;
    color: #0066ff;
}

/* Modal Styles */
#rescheduleModal .modal-header,
#cancelModal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
}

#rescheduleModal .modal-footer,
#cancelModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

#rescheduleModal .btn-primary {
    background-color: #0066ff;
    border: none;
}

#rescheduleModal .btn-primary:hover,
#cancelModal .btn-danger:hover {
    background-color: #c82333;
}

#rescheduleModal .form-label,
#cancelModal .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

/* Cancel Modal Specific Styles */
#cancelModal .modal-dialog {
    max-width: 500px;
}

#cancelModal .cancel-icon {
    font-size: 64px;
    color: #dc3545;
    margin-bottom: 1rem;
}

#cancelModal .btn-danger {
    background-color: #dc3545;
    border: none;
    min-width: 180px;
}

#cancelModal .btn-outline-secondary {
    min-width: 120px;
}

#cancelModal .modal-body {
    padding: 2rem;
}