/* 全屏 Loading 屏幕样式 */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
}

/* 弹跳动画效果 */
.bouncing-ball {
    margin-left:-30px;
    width: 10px;
    height: 10px;
    background-color: #3498db;
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
}

/* 弹跳动画的关键帧 */
@keyframes bounce {
    0%, 100% {
        transform: translateY(8px);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* 动画效果的样式 */
.loading-text {
    font-size: 30px;
    font-weight: bold;
    display: inline-block;
    color: #555; /* 初始字体颜色较暗 */
    white-space: nowrap;
}

/* 每个字母的颜色渐变 */
.loading-text span {
    display: inline-block;
    animation: color-cycle 6s infinite ease-in-out;
}

/* 定义字体颜色从暗到亮，再从亮到暗的循环渐变动画 */
@keyframes color-cycle {
    0% {
        color: #555; /* 初始颜色：灰色 */
    }
    50% {
        color: #ffffff; /* 中间颜色：白色 */
    }
    100% {
        color: #555; /* 结束颜色：灰色 */
    }
}
/* 页面主要内容样式 */
#content {
    display: none; /* 初始时隐藏内容 */
}

#navbarButtonList button{
    width: 2.0rem;
    height: 2.0rem;
    border-radius: 0.5rem;
}
.upload-model-button{
    background-image: url(../../images/navbar/upload.svg);
}
.add-model-button{
    background-image: url(../../images/navbar/addModel.svg);
}
.edit-model-button{
    background-image: url(../../images/navbar/edit.svg);
}
.familyTypeImg{
    width: 100px;
    height: 150px;
}
#addModelFamily{
    min-width: 30rem;
}
#modelTypeSelect{
    padding: 0.2rem 0.2rem;
    width: 120px;
}
#addModelProperty{
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
}
#addModelFamilyCardBody div{
    margin: 0.5rem 0.5rem;
}