.container-schedule{
    width: 300px;
    padding: 16px;
    position: relative;

    .schedule-title{
        font-size: 16px;
        font-weight: 400;
        color: var(--color-black);
        padding: 0 0 16px 0;
    }

    .form-group-schedule{
        display: flex;
        flex-direction: column;
        gap: 24px;

        .select-frequency{
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 8px;

            .select-label{
                color: var(--color-black);
                font-weight: 400;
                line-height: 17.92px;
                font-size: 12.8px;
            }

            .select-frequency-field{
                cursor: pointer;
                opacity: 0;
                position: absolute;
                left: 0;
                width: 100%;
                height: 100%;
            }

            .select-frequency-field-custom{
                border: 1px solid var(--color-silver-gray);
                padding: 8px 10px;
                border-radius: 4px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                
                .select-text {
                    flex-grow: 1;
                    font-size: 12.8px;
                }

                .select-icon {
                    width: 16px;
                    height: 20px;
                    margin-left: 8px;
                }
            }
        }

        .select-time{
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 8px;

            .select-label{
                color: var(--color-black);
                font-weight: 400;
                line-height: 17.92px;
                font-size: 12.8px;
            }

            .select-time-field{
                cursor: pointer;
                opacity: 0;
                position: absolute;
                left: 0;
                width: 113px;
                height: 100%;
            }

            .select-time-field-custom{
                border: 1px solid var(--color-silver-gray);
                padding: 8px 10px;
                border-radius: 4px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                cursor: pointer;
                width: 113px;
                height: 36px;

                .select-text {
                    flex-grow: 1;
                    font-size: 12.8px;
                }

                .select-icon {
                    width: 16px;
                    height: 20px;
                    margin-left: 8px;
                }
            }
        }

        .schedule-note{
            display: block;
            font-size: 12px;
            line-height: 16.8px;
        }
    
        .schedule-actions{
            display: flex;
            gap: 10px;
    
            .btn_save{
                width: 132px;
                height: 36px;
                padding: 10px 24px;
                font-size: 12.8px;
                cursor: pointer;
                background-color: var(--color-silver-gray);
                border: none;
                border-radius: 4px;
            }
        }
    }
}

.container-info-schedule {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    
    .title-schedule-info {
        font-size: 16px;
        font-weight: 400;
        color: var(--color-black);
    }

    .schedule-info-text{
        font-size: 13px;
        line-height: 16.8px;
    }

    .button-change-schedule {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-orange);
        color: var(--color-white);
        width: 266px;
        height: 36px;
        padding: 8px 12px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
}