/* Copyright (c) 2026 Blink-Bot Softwares All Rights Reserved. */
.software_div {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: monospace;
    padding: 10px 10px;
    margin: 10px;
    border-radius: 10px;
    /* background-color: var(--grey9); */
    max-height: 200px;
    max-width: 250px;
    min-width: 150px;
    overflow: hidden;
    transition: max-height 1s;
}
.software_div:hover {
    max-height: 1000px;
}
.seperator {
    height: 5px;
    background-color: var(--magenta3);
    border-radius: 10px;
}
.software_comment {
    color: rgb(216, 0, 0);
    line-height: 1.5;
}
.preview_image {
    flex: 1;
    height: 150px;
    object-fit: contain;
    width: 100%;
}
.detail {
    opacity: 0;
    margin: 5px;
    transition: opacity 1s;
}
.software_div:hover .detail {
    opacity: 1;
}
.soft_ui {
    border-radius: 10px;
    box-shadow: 6px 6px 15px var(--soft-ui-dark),
    -6px -6px 15px var(--soft-ui-light);
}

.rainbow {
    background: linear-gradient(90deg, #F00, #FF0, #0F0, #0FF, #00F, #F0F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bolder;
    font-size: 1.5em;
}

.warning {
    color: orange;
    font-weight: 900;
}

.note {
    font-size: 10px;
    color: grey;
}

.underline {
    text-decoration: underline;
}