* {
    padding: 0px;
}

body {
    background-color: #ffffff;
}

.sidebar {
    position: sticky;
    background-color: #ffffff;
    padding: 10px 20px 10px 20px;
    min-height: 100vh;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
    top: 0;
    overflow-y: auto;
    border-right: 1px solid #ddd;
    z-index: 1000;
}

.logout-btn:hover {
    background-color: #ebbebb;
}

.sidebar a {
    display: block;
    padding: 5px 10px;
    margin-bottom: 2px;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.sidebar a:hover,
.sidebar a.active {
    background-color: #d2e8ff;
    color: #000000;
}

.sidebar h6 {
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
}



.sidebar .worker-section {
    background-color: #ffe4b2;
}

.main-content {
    padding: 20px 20px;
    background-color: #f3f9ff;
}

.fomr-control {
    border: 1px solid black;
}

.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #dee2e6;
}

/* Step Progress Styles */
.step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    padding: 0 20px;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e9ecef;
    z-index: 0;
}

.progress-bar {
    position: absolute;
    top: 20px;
    left: 0;
    height: 4px;
    background: #0d6efd;
    z-index: 1;
    transition: width 0.3s ease;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
    width: 100%;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-weight: bold;
    border: 3px solid white;
}

.step.active .step-number {
    background: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.step.completed .step-number {
    background: #198754;
    color: white;
    border-color: #198754;
}

.step-label {
    font-size: 13px;
    text-align: center;
    color: #6c757d;
    max-width: 100px;
    word-break: break-word;
}

.step.active .step-label,
.step.completed .step-label {
    color: #212529;
    font-weight: bold;
}

.step-connector {
    position: absolute;
    top: 20px;
    left: -50%;
    right: 50%;
    height: 4px;
    background: #0d6efd;
    z-index: 1;
}

.step-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 15px 0;
    border-top: 1px solid #dee2e6;
}

/* Base custom button */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* space between icon and text */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


/* Variants */
.btn-custom-primary {
    background-color: #1a75fc;
    /* bootstrap blue */
    color: #fff;
    border-radius: 25px;
    padding: 6px 10px;
}

.btn-custom-primary:hover {
    border: 2px solid #0b5ed7;
    /* background-color: #0b5ed7; */
    color: #0b5ed7;
}

/* Secondary variant */
.btn-custom-secondary {
    background-color: #f1f3f4;
    /* Google button light */
    color: #202124;
    border: 1px solid #dadce0;
}

.btn-custom-secondary:hover {
    background-color: #e8eaed;
}

/* Danger variant */
.btn-custom-danger {
    background-color: #ea4335;
    /* Google red */
    color: #fff;
}

.btn-custom-danger:hover {
    background-color: #d93025;
}


/* table style  */
/* Modern Google-style table */
.table-modern {
    border-collapse: separate;
    border-spacing: 0 8px;
    width: 100%;
    background-color: transparent;
}

.table-modern thead th {
    background-color: #ccdff1ff;
    color: #202124;
    font-weight: 600;
    border: none;
    padding: 5px 16px;
    /* border-radius: 8px 8px 0 0; */
    font-size: 16px;
}

.table-modern tbody tr {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(60, 64, 67, .08), 0 2px 6px rgba(60, 64, 67, .06);
    border-radius: 8px;
    transition: box-shadow 0.2s;
}

.table-modern tbody tr:hover {
    box-shadow: 0 4px 12px rgba(60, 64, 67, .12), 0 6px 16px rgba(60, 64, 67, .08);
}

.table-modern td {
    vertical-align: middle;
    padding: 12px 16px;
    border-top: none;
    border-bottom: none;
    font-size: 15px;
    font-weight: 550;
}

.table-modern .badge {
    font-size: 0.85rem;
    padding: 0.35em 0.65em;
}

.form-control-sm {
    font-size: 0.85rem;
}

.post-job-body {
    border-radius: 18px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 10px 0px;
}

.input-border {
    border: 1px solid #a5caf0;
    border-radius: 18px;
}

.input-border:hover {
    border-color: #0b5ed7;
}
.form-check-input {
  width: 15px;
  height: 15px;
  border-radius: 6px;
  border: 2px solid #dadce0;
  background-color: #fff;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  margin-right: 10px;
}

.form-check-input:checked {
  background-color: #1a73e8;
  border-color: #1a73e8;
}

.form-check-input:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-check-input:hover {
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.15);
}


body {
    background-color: #f7f8fc;
    font-family: "Google Sans", "Roboto", sans-serif;
}

.gmail-card {
    background: #fff;
    border-radius: 16px;
    max-width: 100%;
    margin: 40px auto;
    padding: 32px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.gmail-title {
    font-size: 20px;
    color: #202124;
    font-weight: 600;
    margin-bottom: 24px;
}

.gmail-field {
    margin-bottom: 24px;
}

.gmail-label {
    display: block;
    color: #5f6368;
    font-size: 14px;
    margin-bottom: 6px;
}

.gmail-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    background: #fff;
}

.gmail-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.gmail-days {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gmail-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dadce0;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 14px;
    cursor: pointer;
    color: #3c4043;
    transition: all 0.2s ease;
}

.gmail-chip input {
    display: none;
}

.gmail-chip:hover {
    background-color: #f1f3f4;
}

.gmail-chip input:checked+span {
    color: #1a73e8;
    font-weight: 500;
}

.gmail-chip input:checked+span::before {
    content: "✔ ";
    font-size: 13px;
}

.gmail-time-row {
    display: flex;
    gap: 16px;
}

.gmail-sleepover {
    border-top: 1px solid #e0e0e0;
    padding-top: 16px;
    margin-top: 20px;
}

.gmail-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3c4043;
    cursor: pointer;
    font-size: 15px;
}

.gmail-btn {
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 24px;
}

.gmail-btn:hover {
    background-color: #1558c0;
}