generated from pricelees/issue-pr-template
176 lines
3.6 KiB
CSS
176 lines
3.6 KiB
CSS
#root .flatpickr-input {
|
|
display: none;
|
|
}
|
|
|
|
#root .modal-backdrop {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1050;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: rgba(0, 0, 0, 0.5) !important;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#root .modal-dialog {
|
|
max-width: 500px;
|
|
width: 90%;
|
|
margin: 1.75rem auto;
|
|
}
|
|
|
|
/* Toss-style Modal */
|
|
#root .modal-content {
|
|
background-color: #fff !important;
|
|
border-radius: 16px;
|
|
border: none;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
padding: 1.5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
pointer-events: auto;
|
|
position: relative;
|
|
}
|
|
|
|
#root .modal-header {
|
|
border-bottom: none;
|
|
padding: 0 0 1rem 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
#root .modal-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#root .btn-close {
|
|
background: transparent;
|
|
border: 0;
|
|
font-size: 1.5rem;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
#root .modal-body {
|
|
padding: 1rem 0;
|
|
color: #333;
|
|
}
|
|
|
|
#root .modal-body p {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
#root .modal-footer {
|
|
border-top: none;
|
|
padding: 1rem 0 0 0;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
/* --- Generic Button Styles --- */
|
|
#root .btn-primary,
|
|
#root .modal-footer .btn-primary,
|
|
#root .btn-wrapper .btn-primary,
|
|
#root .button-group .btn-primary,
|
|
#root .success-page-actions .btn-primary {
|
|
background-color: #007bff;
|
|
border-color: #007bff;
|
|
color: #fff;
|
|
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
#root .btn-secondary,
|
|
#root .modal-footer .btn-secondary,
|
|
#root .success-page-actions .btn-secondary {
|
|
background-color: #f0f2f5;
|
|
border-color: #f0f2f5;
|
|
color: #333;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: background-color 0.15s ease-in-out;
|
|
}
|
|
|
|
#root .btn-primary:hover,
|
|
#root .modal-footer .btn-primary:hover,
|
|
#root .btn-wrapper .btn-primary:hover,
|
|
#root .button-group .btn-primary:hover,
|
|
#root .success-page-actions .btn-primary:hover {
|
|
background-color: #0069d9;
|
|
border-color: #0062cc;
|
|
}
|
|
|
|
#root .btn-secondary:hover,
|
|
#root .modal-footer .btn-secondary:hover,
|
|
#root .success-page-actions .btn-secondary:hover {
|
|
background-color: #e2e6ea;
|
|
}
|
|
|
|
|
|
/* --- Reservation Success Page Styles --- */
|
|
.reservation-success-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 3rem 1rem;
|
|
text-align: center;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.reservation-success-page .content-container-title {
|
|
font-size: 2rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1.5rem;
|
|
color: #333;
|
|
}
|
|
|
|
.reservation-info-box {
|
|
border: 1px solid #e9ecef;
|
|
border-radius: 12px;
|
|
padding: 2rem;
|
|
background-color: #fff;
|
|
min-width: 380px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
|
|
text-align: left;
|
|
}
|
|
|
|
.reservation-info-box h3 {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1.5rem;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 1px solid #e9ecef;
|
|
text-align: center;
|
|
}
|
|
|
|
.reservation-info-box .info-item {
|
|
font-size: 1.1rem;
|
|
margin-bottom: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.reservation-info-box .info-item strong {
|
|
font-weight: 500;
|
|
color: #495057;
|
|
width: 70px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.success-page-actions {
|
|
margin-top: 2.5rem;
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|