﻿/* styles.css */

.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1;
}

.fab-btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sub-buttons {
    /* Set the initial opacity to 0 and height to 0 */
    display: flex;
    align-items: center;
    align-content: center;
    opacity: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    bottom: 50px;
    transition: opacity 0.5s ease, height 0.5s ease;
    /* Add transition properties */
  
}

    /* Add this class to show the sub-buttons */
    .sub-buttons.show {
        display: block;
        opacity: 1;
        height: auto;
        transition: opacity 0.5s ease, height 0.5s ease;
        /* Set height to auto to reveal the content */
    }

.sub-btn {
    right: 30px;
    margin-bottom: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.fab-container .btn {
    padding: 0 !important;
}


