<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 Theme Name: Astra Child
 Template: astra
*/

.auth-page {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}
.auth-page a {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}
.auth-page a:hover {
    background: #005177;
}

.edit-profile-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.edit-profile-form p {
    margin-bottom: 15px;
}
.edit-profile-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.edit-profile-form input[type="text"],
.edit-profile-form input[type="email"],
.edit-profile-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.edit-profile-form input[type="submit"] {
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.edit-profile-form input[type="submit"]:hover {
    background: #005177;
}

.profile-notice {
    background: #fff3cd;
    padding: 15px;
    text-align: center;
    margin: 10px 0;
    border: 1px solid #ffeeba;
}
.profile-notice a {
    color: #0073aa;
    text-decoration: none;
}
.profile-notice a:hover {
    text-decoration: underline;
}

.add-portfolio-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.add-portfolio-form label {
    display: block;
    margin-bottom: 5px;
}
.add-portfolio-form input[type="text"],
.add-portfolio-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.project-featured-image img {
    display: block;
    width: 100%;
}

/* Booking Calendar Styles */
.booking-calendar .bookly-calendar {
  width: 100%;
  margin: 2rem 0;
  font-family: inherit;
}

.bookly-calendar .slot.available {
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.bookly-calendar .slot.available:hover {
  border-color: #d4af37;
  transform: scale(1.02);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.bookly-calendar .slot.unavailable {
  opacity: 0.5;
  pointer-events: none;
}

/* Service Dropdown */
.bookly-service-selector {
  padding: 0.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .booking-calendar {
    font-size: 0.9rem;
  }
}

.booking-success, .booking-errors {
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-weight: bold;
}

.booking-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.booking-errors {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.booking-errors ul {
  margin: 0;
  padding-left: 1em;
}

</pre></body></html>