body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgb(42, 63, 65);
    margin: 0;
    padding: 0;
    color: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: center;
    margin: 20px 0 40px;
}

.tabs {
    display: flex;
    gap: 60px;
    background-color: rgba(7, 60, 65, 0.7);
    padding: 12px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.tab {
    color: #aaa;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.3s;
}

.tab.active,
.tab:hover {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0,255,136,0.6);
}

.clock {
    display: flex;
    justify-content: space-between;
    background-color: rgb(7, 60, 65);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.clock-left, .clock-right {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.clock-label {
    font-size: 1.3rem;
    font-weight: bold;
    color: #00ff88;
}

.date, .year, .time, .day, .location {
    font-size: 1.1rem;
}

.search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 40px;
    font-size: 1.1rem;
}

.search input {
    background: rgb(7, 60, 65);
    border: 1px solid rgb(30, 80, 85);
    color: #eee;
    padding: 12px 16px;
    border-radius: 8px;
    width: 420px;
    font-size: 1.05rem;
}

.search input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 12px rgba(0,255,136,0.3);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(7, 60, 65);
    border-radius: 12px;
    padding: 18px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.tile.state-ok:hover {
    background-color: rgb(0, 82, 140);
}

.tile.state-down {
    background-color: rgb(113, 0, 0);
}

.tile.state-down:hover {
    background-color: rgb(140, 0, 60);
}

.tile img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 8px;
}

.tile p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.state-indicator {
    margin-top: 6px;
    font-size: 0.8rem;
    opacity: 0.75;
}

/* Bookmarks */
.bookmarks-section {
    margin-top: 40px;
}

.bookmarks-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0,255,136,0.4);
}

.bookmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.bookmark-column {
    background-color: rgb(7, 60, 65);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.bookmark-column h3 {
    margin: 0 0 16px 0;
    color: #00ff88;
    font-size: 1.25rem;
}

.bookmark-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bookmark-column li {
    margin-bottom: 10px;
}

.bookmark-column a {
    color: #ddd;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.bookmark-column a:hover {
    color: #00ff88;
}

/* Wrk tab specific tweaks */
.wrk-column {
    background-color: rgb(20, 45, 50); /* slightly darker/different tone */
    border-left: 3px solid #00cc77;
}

.wrk-column h3 {
    color: #00ffaa;
}

/* Make links without arrow on Wrk tab (or keep arrow - up to you) */
#wrk-links-container a {
    /* color: #88ffcc; */ /* optional different color */
    /* text-decoration: underline; */
}