/* Housekeeping Portal Styles */
.creek-hk-portal {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Login */
.creek-hk-login-box {
    max-width: 400px;
    margin: 40px auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.creek-hk-login-box h2 {
    text-align: center;
    margin: 0 0 24px;
    color: #1e293b;
    font-size: 22px;
}

/* Header */
.creek-hk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}
.creek-hk-header h2 {
    margin: 0;
    color: #1e293b;
    font-size: 20px;
}
.creek-hk-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
#creek-hk-welcome {
    color: #475569;
    font-size: 14px;
}

/* Bookings area */
.creek-hk-subtitle {
    color: #475569;
    font-size: 14px;
    margin: 0 0 16px;
}

/* Bookings table */
.creek-hk-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}
.creek-hk-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.creek-hk-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 14px;
}
.creek-hk-table tbody tr:last-child td {
    border-bottom: none;
}
.creek-hk-table tbody tr:hover {
    background: #f8fafc;
}
