/* Resetting to standard system styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f0f0f2; /* Classic neutral browser gray */
    color: #333333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.start-page {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Classic Input Fields styling */
.search-wrapper {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #b3b3b3;
    border-radius: 4px; /* Standard classic desktop rounding */
    padding: 6px 10px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.search-icon {
    font-size: 14px;
    color: #777777;
    margin-right: 8px;
}

#search-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #333333;
    font-size: 14px;
    outline: none;
}

#search-input::placeholder {
    color: #999999;
}

#search-engine {
    background: transparent;
    border: none;
    color: #555555;
    font-size: 12px;
    cursor: pointer;
    outline: none;
    border-left: 1px solid #d3d3d3;
    padding-left: 8px;
}

/* Document / Bookmark Section Layout */
.section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title {
    font-size: 14px;
    font-weight: bold;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 4px;
}

/* Basic Grid Bookmarks */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.favorite-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333333;
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 4px; /* Crisp desktop icon layout */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.favorite-label {
    font-size: 12px;
    text-align: center;
}

/* Classic UI Panel Cards */
.status-card {
    background-color: #ffffff;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.status-header {
    font-size: 16px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 14px;
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #eeeeee;
    padding-top: 12px;
    margin-bottom: 14px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.detail-label {
    color: #777777;
}

.detail-val {
    font-weight: bold;
    color: #333333;
}

/* Normal Desktop Button Styling */
#clock-toggle {
    background-color: #f5f5f5;
    border: 1px solid #cccccc;
    color: #333333;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
    cursor: pointer;
}

#clock-toggle:hover {
    background-color: #e8e8e8;
    border-color: #adadad;
}
