.shift-filter {
    margin-bottom: 3rem;
	margin-top: -5rem;
    text-align: right;
}
.shift-filter select {
    padding: 0.4rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.shift-section {
    margin-bottom: 4rem;
}
.shift-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.shift-box:hover {
    border-color: #0073aa;
}

.shift-people {
    float: right;
}

.shift-meta {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
}

.shift-message {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9999;      /* very high so it overlays other elements */
    padding: 0.8rem;
    border-radius: 4px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.8); /* optional: dark background */
    color: white;                        /* text color */
    box-shadow: 0 2px 8px rgba(0,0,0,0.3); /* optional shadow */
    display: none;                      /* hidden by default, shown by JS */
}

.shift-message.success {
    background: #dff0d8;
    color: #3c763d;
}
.shift-message.error {
    background: #f2dede;
    color: #a94442;
}

input.button {
    width: 100%;
    background-color: #0073aa;
    color: white;
    padding: 0.7rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

input.button-red {
    width: 100%;
    background-color: #aa3700;
    color: white;
    padding: 0.7rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

input.button-red:hover {
    background-color: #882b00;
}

input.button:hover {
    background-color: #005d88;
}

.eventadmin-tabs {
    font-family: inherit;
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid #ccc;
    margin-bottom: 1em;
}

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-bottom: none;
    background-color: #f9f9f9;
    margin-right: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tab-item.active {
    background-color: #fff;
    border-bottom: 2px solid white;
    font-weight: bold;
}
/**
.tab-panel {
    border: 1px solid #ccc;
    padding: 15px;
    background: #fff;
    border-radius: 0 5px 5px 5px;
}
*/
