@charset "utf-8";

/*
Theme Name: Sakurairo
Theme URI: https://github.com/mirai-mamori/Sakurairo
Author: Created by Fuukei
Author URI: https://docs.fuukei.org/
Description: A WordPress theme that is built with AI-assisted reading features, colorful, user-friendly, well-rounded, and rich in functionalities. (Based on Theme Sakura)
Version: 3.0.4
Tested up to: 6.8
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sakurairo
Tags: AI-assisted reading, Colorful, User-friendly, Well-rounded, Feature-rich
*/

/* Base HTML Element Styles */
/*
================================================================================
CSS_START
================================================================================
*/

/* 网站连通性与延迟监控模块样式 */
.site-status-container {
    border: 1px solid #e0e0e0;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 14px;
}

.site-status-container h4 {
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* 使用 Flexbox 布局表头和每一行项目 */
.site-status-header,
.site-status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* 移除最后一行的下边框 */
.site-status-item:last-child {
    border-bottom: none;
    padding-bottom: 5px; /* 调整间距 */
}

/* 表头样式 */
.site-status-header {
    font-weight: bold;
    color: #555;
    padding-top: 0;
}

/* 定义三栏的宽度和对齐方式 */
.header-remark, .site-remark {
    flex: 0 1 50%; /* 占据 50% 宽度，允许收缩 */
    text-align: left;
    padding-right: 10px;
    word-break: break-all; /* 防止长备注撑开布局 */
}

.header-connectivity, .site-connectivity {
    flex: 0 0 25%; /* 固定占据 25% 宽度 */
    text-align: center;
}

.header-ping, .site-ping {
    flex: 0 0 25%; /* 固定占据 25% 宽度 */
    text-align: right;
}

.site-remark {
    font-weight: bold;
    color: #333;
}

.status-indicator, .ping-value {
    font-weight: bold;
    transition: color 0.3s ease;
}
/*
================================================================================
CSS_END
================================================================================
*/