.tss-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tss-dashboard-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.tss-dashboard-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
}

.tss-dashboard-header p {
    margin: 0;
    color: #666;
}

.tss-dashboard-wrapper {
    display: flex;
    gap: 30px;
}

.tss-dashboard-navigation {
    flex: 0 0 200px;
}

.tss-dashboard-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tss-dashboard-navigation-link {
    margin-bottom: 5px;
}

.tss-dashboard-navigation-link a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    transition: all 0.2s;
}

.tss-dashboard-navigation-link a:hover {
    background: #f5f5f5;
    color: #007cba;
}

.tss-dashboard-navigation-link.is-active a {
    background: #007cba;
    color: #fff;
    font-weight: 600;
}

.tss-dashboard-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.tss-dashboard-welcome h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
}

.tss-dashboard-welcome p {
    color: #666;
    line-height: 1.6;
}

.tss-dashboard-login {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tss-dashboard-login h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    text-align: center;
}

.tss-dashboard-login > p {
    margin: 0 0 30px 0;
    color: #666;
    text-align: center;
}

.tss-dashboard-login form {
    margin-bottom: 20px;
}

.tss-dashboard-login form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.tss-dashboard-login form input[type="text"],
.tss-dashboard-login form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.tss-dashboard-login form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #007cba;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.tss-dashboard-login form input[type="submit"]:hover {
    background: #005a87;
}

.tss-dashboard-login form .login-remember {
    margin-bottom: 15px;
}

.tss-dashboard-login form .login-remember label {
    display: inline;
    font-weight: normal;
    margin-left: 5px;
}

.tss-login-register {
    text-align: center;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.tss-login-register a {
    color: #007cba;
    text-decoration: none;
}

.tss-login-register a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .tss-dashboard-wrapper {
        flex-direction: column;
    }

    .tss-dashboard-navigation {
        flex: 1;
    }

    .tss-dashboard-navigation ul {
        display: flex;
        gap: 10px;
    }

    .tss-dashboard-navigation-link {
        margin-bottom: 0;
    }

    .tss-dashboard-login {
        padding: 30px 20px;
    }
}

.tss-calendar-container {
    margin-top: -10px;
}

.tss-calendar-container h3 {
    margin: 0 0 20px 0;
    font-size: 24px;
}

#shift-calendar {
    background: #fff;
}

#shift-calendar .fc-button-primary {
    background-color: #007cba;
    border-color: #007cba;
}

#shift-calendar .fc-button-primary:hover {
    background-color: #005a87;
    border-color: #005a87;
}

#shift-calendar .fc-button-primary:not(:disabled).fc-button-active {
    background-color: #005a87;
    border-color: #005a87;
}
