#debugger-tool {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    padding: 0px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);

    display: flex;
    flex-direction: column;
    gap: 10px;

    transition: all 0.2s ease-in-out;

    &.active {
        background-color: #69c290;
        padding: 4px;
    }
}

.debugger-tool__icon {
    padding: 2px;
    cursor: pointer;
}

.debugger-tool__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.debugger-tool__content > * {
    padding: 2px 5px 2px 5px;
    background-color: #f5f5f5;
    border-radius: 5px;
    display: flex;
    min-height: 30px;
    align-items: center;

    transition: background-color 0.2s ease-in-out;
}

.debugger-tool__content .list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.debugger-tool__content .list .list__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.debugger-tool__content .value {
    flex: 1;
    display: flex;
    font-weight: bold;
    margin-left: 5px;
    justify-content: flex-end;
}

.copiable {
    position: relative;
    cursor: pointer;
    display: inline-block; /* or 'block', depending on your layout */
    padding-right: 20px; /* space for the icon */
}

.copiable::after {
    content: '\2398';
    position: absolute;
    right: 0;
    transform: translateY(-5px);
    font-family: Arial, sans-serif; /* Ensure the icon is displayed correctly */
    font-size: 20px; /* Adjust size as needed */
    color: #646464; /* Color of the icon */
}

.copied {
    background-color: #067d00;
    color: #ffffff;
}

.open-phpmyadmin {
    font-size: 12px;
    padding: 3px !important;
}