/* Job Details Page Styles */

.job-details-card {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.job-details-card .card-title {
  color: #495057;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.job-description {
  background-color: #f8f9fa !important;
  border: 1px solid #e9ecef;
  min-height: 100px;
}

/* Job Status Badges */
.badge[class*="job-status-"] {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
}

.job-status-pending {
  background-color: #ffc107;
  color: #212529;
}

.job-status-scheduled {
  background-color: #0dcaf0;
  color: #212529;
}

.job-status-in_progress {
  background-color: #fd7e14;
  color: #fff;
}

.job-status-completed {
  background-color: #198754;
  color: #fff;
}

.job-status-cancelled {
  background-color: #dc3545;
  color: #fff;
}

/* Timeline Styles */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e9ecef;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #6c757d;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #e9ecef;
}

.timeline-marker-success {
  background-color: #198754;
}

.timeline-marker-warning {
  background-color: #ffc107;
}

.timeline-marker-danger {
  background-color: #dc3545;
}

.timeline-content h6 {
  margin-bottom: 0.25rem;
  color: #495057;
  font-weight: 600;
  font-size: 0.875rem;
}

.timeline-content small {
  font-size: 0.75rem;
}

/* Modal Enhancements */
.modal-content {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header {
  border-bottom: 1px solid #e9ecef;
  background-color: #f8f9fa;
}

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

/* Form Enhancements */
.form-label {
  color: #495057;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

/* Button Enhancements */
.btn {
  font-weight: 500;
  border-radius: 0.375rem;
}

.btn i {
  margin-right: 0.5rem;
}

/* Card Action Buttons */
.d-grid.gap-2 .btn {
  margin-bottom: 0.5rem;
}

.d-grid.gap-2 .btn:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline {
    padding-left: 1.5rem;
  }
  
  .timeline-marker {
    left: -1.5rem;
  }
  
  .timeline::before {
    left: 0.5rem;
  }
}

/* Print Styles */
@media print {
  .btn, .modal {
    display: none !important;
  }
  
  .card {
    border: 1px solid #000;
    box-shadow: none;
  }
}
#dashboard-cards {
    height: 40vh;
    margin-top: 10rem;
}
.login-container {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.login-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #495057;
  font-weight: 500;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  margin-left: -1.5em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0.25em;
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-label {
  color: #495057;
  cursor: pointer;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
  /* width: 100%; */
  padding: 0.5rem;
  font-size: 1rem;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.btn-primary:focus {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.login-links {
  text-align: center;
  margin-top: 1rem;
}

.login-links a {
  color: #0d6efd;
  text-decoration: none;
  margin: 0 0.5rem;
}

.login-links a:hover {
  text-decoration: underline;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* CSS Custom Properties - Navy & Tan Color Scheme */
:root {
  --primary-navy: #1A365D;
  --accent-tan: #D69E2E;
  --light-background: #F7FAFC;
  --text-dark: #2D3748;
  --text-light: #718096;
  --border-color: var(--primary-navy);
  --white: #FFFFFF;
  --success: #38A169;
  --hover-navy: #2D3748;
  --tan-light: #F7E6B7;
}

/* Custom Styles for Craig Mathis Handyman */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  border-left: 8px solid var(--border-color);
  border-right: 8px solid var(--border-color);
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-tan) 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero-section .tagline {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent-tan);
  border: none;
}

.btn-primary:hover {
  background: var(--hover-navy);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-navy);
  color: var(--primary-navy);
}

.btn-outline:hover {
  background: var(--primary-navy);
  color: var(--white);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--light-background);
}

.features h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.features p {
  color: var(--text-light);
}

/* Services Preview */
.services-preview {
  padding: 80px 0;
}

.services-preview h2 {
  text-align: center;
  color: var(--primary-navy);
  margin-bottom: 3rem;
}

.services-preview ul {
  list-style: none;
  padding: 0;
}

.services-preview li {
  padding: 8px 0;
  border-bottom: 1px solid var(--tan-light);
  color: var(--text-dark);
}

.services-preview li:before {
  content: "✓";
  color: var(--success);
  margin-right: 10px;
  font-weight: bold;
}

.services-preview .btn {
  display: block;
  width: 200px;
  margin: 3rem auto 0;
}

/* Page Headers */
.page-header {
  background: var(--primary-navy);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Services Content */
.services-content {
  padding: 60px 0;
}

.service-category {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  height: 100%;
}

.service-category h3 {
  color: var(--primary-navy);
  border-bottom: 3px solid var(--accent-tan);
  padding-bottom: 10px;
  margin-bottom: 1.5rem;
}

.service-category ul {
  list-style: none;
  padding: 0;
}

.service-category li {
  padding: 8px 0;
  color: var(--text-dark);
}

.service-category li:before {
  content: "→";
  color: var(--accent-tan);
  margin-right: 10px;
  font-weight: bold;
}

/* Contact Form */
.contact-content {
  padding: 60px 0;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--tan-light);
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-tan);
  box-shadow: 0 0 0 0.2rem rgba(214, 158, 46, 0.25);
}

/* Contact Info */
.contact-info {
  background: var(--light-background);
  padding: 2rem;
  border-radius: 10px;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.contact-item p, .contact-item ul {
  color: var(--text-light);
}

.contact-item a {
  color: var(--accent-tan);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* About Content */
.about-content {
  padding: 60px 0;
}

.about-sidebar {
  background: var(--light-background);
  padding: 2rem;
  border-radius: 10px;
}

.about-sidebar h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.about-sidebar ul {
  list-style: none;
  padding: 0;
}

.about-sidebar li {
  padding: 5px 0;
  color: var(--text-light);
}

.cta-box {
  background: var(--accent-tan);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 2rem;
}

.cta-box h4 {
  margin-bottom: 1rem;
}

.cta-box .btn {
  background: var(--white);
  color: var(--accent-tan);
  border: none;
}

.cta-box .btn:hover {
  background: var(--light-background);
}

/* CTA Section */
.cta-section {
  background: var(--primary-navy);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Alert Styles */
.alert {
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.alert-success {
  background: var(--tan-light);
  border: 1px solid var(--success);
  color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.2rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .service-category {
    margin-bottom: 1rem;
  }
}
