:root {
  --action-container-height: 60px;
}

body {
    font-size: 14px;
}
.full-content .content-wrapper > .content, .full-content .content-wrapper > .content > .container-fluid {
    padding: 0;
}

#main {
    padding-bottom: var(--action-container-height);
}

#work-site-show #main {
    padding-bottom: calc(var(--action-container-height) * 2);
}

#main form label {
    
}

#action-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: white;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1039;
    height: var(--action-container-height);
    border-radius: 0;
    transition: height 0.3s;
}

#work-site-show #action-container, #action-container.row-2 {
    height: var(--action-container-height) * 2;
}

#action-container > .card-header {
    justify-content: center;
    height: var(--action-container-height);
    border-radius: 0;
}

#action-container.open {
    height: auto;
}

#action-container.open > .card-header {
    justify-content: end;
}

#action-container-header-title {
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-left: 0.5em;
    font-size: 1.2em;
}
#action-wrapper {
    max-height: 50vh;
    overflow: auto;
}

#toggle-button {
    transition: transform 0.3s;
}

.toggle-icon {
    transition: transform 0.3s;
}

.rotate {
    transform: rotate(45deg);
}

#action-container .schedule-list {
    box-sizing: border-box;
}

#action-menu {
    //transform: translateY(50px);
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    height: var(--action-container-height);
}

#work-site-show #action-menu {
    transform: inherit;
    transition: inherit;
}

#action-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.action-item {
    flex: 1;
    text-align: center;
    //font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.schedule-list h3 {
    margin-bottom: 0;
}

.schedule-list p {
    margin-bottom: 0;
}

/* btn-pink の定義 */
.btn-pink {
    color: #fff; /* テキストの色 */
    background-color: var(--pink); /* ピンク色 */
    border-color: var(--pink); /* ボーダー色 */
}

.btn-pink:hover {
    color: #fff; /* ホバー時のテキスト色 */
    background-color: #c53577; /* ホバー時の背景色 */
    border-color: #ab2f6a; /* ホバー時のボーダー色 */
}

.btn-pink:focus, .btn-pink.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.5); /* フォーカス時のシャドウ */
}

.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0;
}

.content-header h1 {
    font-size: 1.5rem;
}

.h3, h3 {
    font-size: 1.25rem;
}

.main-header {
    position: sticky;
    top: 0;
}