﻿.bubble-page {
   
    /*height: 100%;*/
    margin: 0;
    padding: 0;
    height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
}

.bubble-container {
    margin: 0px;
    padding: 20px;
    min-height: 100vh; /* Full screen height */
    background: url('/images/login-background.png') no-repeat center center;
    background-size: cover; /* Ensures full image is shown */
    background-position: center center;
    background-attachment: fixed; /* Keeps the background fixed when scrolling */
    background-blend-mode:lighten;
    z-index: 1;
}

.bubble-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: solid;
    border-color: #0078d7;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent grey */
    margin-top: 10px;
    z-index: 2;
}

    .bubble-item:hover {
        background-color: rgba(0, 120, 215, 0.6);
    }

.bubble-icon {
    font-size: 50px; /* Icon size 4 times bigger (adjust as needed) */
    color: #0078d7; /* Blue color */
    margin-right: 15px;
    max-width: 100px;
    border-radius: 10px;
}

.bubble-content {
    flex: 1;
}

.bubble-name {
    margin-left: 20px;
    font-size: 20px;
    font-weight: bold;
}

.bubble-description {
    margin-left: 20px;
    font-size: 14px;
    color: #666;
}


.icon-container {
    margin-left:20px;
    margin-right:20px;
    display: flex;
    align-items: center; /* Vertically align items */
    justify-content: flex-end; /* Align items to the right */
    gap: 45px; /* Even space between each icon */
}



/* Modal container */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}

/* Modal content */
.modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* 10% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px;
    border-radius: 8px;
}

/* Close button */
.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close-button:hover,
    .close-button:focus {
        color: black;
        text-decoration: none;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
    }

    .form-group input[type="text"],
    .form-group textarea,
    .form-group input[type="file"] {
        width: 100%;
        padding: 8px;
        box-sizing: border-box;
    }

.btn {
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
}

/* Overlay */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}

.icon-container {
    display: flex;
    align-items: center; /* Vertically align items */
    justify-content: flex-end; /* Align items to the right */
    gap: 25px; /* Even space between each icon */
}

.icon-item {
    display: flex;
    margin-left: 20px;
    align-items: center; /* Center items inside each icon */
    justify-content: center;
}