Files
ApplianceRepair/Components/Pages/Book.razor.css

168 lines
2.7 KiB
CSS
Raw Normal View History

2026-04-22 20:09:26 -05:00
.booking-page {
padding: 60px 20px;
}
.booking-form-wrapper {
background: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
border-top: 5px solid #0056b3;
}
.form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.form-heading {
color: #0056b3;
margin-bottom: 20px;
font-size: 1.3rem;
border-bottom: 1px solid #eee;
padding-bottom: 10px;
}
.field-group {
margin-bottom: 20px;
margin-right: 20px;
}
.field-group label {
display: block;
font-weight: bold;
margin-bottom: 8px;
color: #333;
}
::deep .custom-input {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
}
::deep .textarea {
height: 120px;
resize: none;
}
/* Upload Styling */
.upload-zone {
background: #f8f9fa;
border: 2px dashed #0056b3;
padding: 20px;
text-align: center;
border-radius: 8px;
margin-bottom: 25px;
}
.small-text {
font-size: 0.85rem;
color: #666;
margin: 10px 0;
}
.file-input {
display: none;
}
.file-count {
margin-top: 10px;
font-size: 0.9rem;
color: #0056b3;
font-weight: bold;
}
.form-footer {
text-align: center;
margin-top: 30px;
}
.btn-large {
background: #4CAF50;
color: white;
border: none;
padding: 15px 40px;
border-radius: 50px;
font-weight: 700;
cursor: pointer;
box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
transition: all 0.3s ease;
}
2026-04-25 13:14:08 -05:00
.complete-container {
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 0 20px;
}
.complete-content {
max-width: 800px;
}
.complete-heading {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
}
.complete-subheading {
font-size: 1.2rem;
color: #555;
line-height: 1.5;
}
::deep .btn-home {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 24px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: background-color 0.2s ease, transform 0.1s ease;
border: none;
cursor: pointer;
}
::deep .btn-home:hover {
background-color: #0056b3;
color: white;
text-decoration: none;
}
::deep .btn-home:active {
transform: scale(0.98);
}
.home-icon {
margin-right: 8px;
}
2026-04-22 20:09:26 -05:00
@media (max-width: 768px) {
.form-grid {
grid-template-columns: 1fr;
}
.booking-form-wrapper {
padding: 20px;
}
2026-04-25 13:14:08 -05:00
.complete-heading {
font-size: 1.8rem; /* Slightly smaller for small screens */
}
.complete-subheading {
font-size: 1rem;
}
2026-04-22 20:09:26 -05:00
}