

header{
	position: sticky;
	top: 0;
}

body{
	background-color: #e7eef4;
}


main[data-slot="content"] {
	min-height: 100vh;
}

@media (prefers-reduced-motion: reduce) {
	.fade-in { animation: none; opacity: 1; transform: none; }
}


@media (max-width: 576px) {
	footer nav div {
	  width: 40%;
	}
}.timeclock-view {
    display: flex;
    justify-content: center;
}

.timeclock-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    max-width: 420px;
    margin: 0 auto;
    padding: 32px 28px;
}

.timeclock-card h1 {
    margin-bottom: 4px;
}

.timeclock-card .qb-label {
    font-weight: 600;
}

.timeclock-actions {
    display: grid;
    gap: 12px;
}

.timeclock-status {
    min-height: 24px;
    font-size: 0.95rem;
}

.timeclock-status.is-info {
    color: #666666;
}

.timeclock-status.is-success {
    color: #1f7a3d;
}

.timeclock-status.is-error {
    color: #b12323;
}
.timeclock-worker {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin: 0;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.timeclock-worker.is-visible {
    opacity: 1;
}

.timeclock-card .qb-input {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-align: center;
	padding: 15px;
	height: 40px;
}


.btn.btn-primary {
	font-size: 18px;
}

.btn.btn-primary i{
	font-size: 28px;
}

.bg-green{
	background-color: #1ea2a7;
}
.bg-orange{
	background-color: #cc4a7e;
}

.accessInfo{
	font-size: 13px;
	color: #666666;
}

#dlShortcut{
	text-align: center;
	font-size: 13px;
	cursor: pointer;
}