/* Existing styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Updated Search Box Layout */
.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-box input {
    flex-grow: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.search-box input:focus {
    border-color: #007bff;
    outline: none;
}

#searchBtn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#searchBtn:hover {
    background-color: #0056b3;
}

.result-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: left;
    animation: fadeIn 0.3s ease-in;
}

.result-item strong {
    display: block;
    color: #007bff;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.result-item div {
    margin: 3px 0;
    color: #555;
}

.no-results {
    color: #888;
    font-style: italic;
}

.hidden {
    display: none !important;
}

/* Login Styles */
#tokenInput {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 10px;
    width: 60%;
}

#unlockBtn {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#unlockBtn:hover {
    background-color: #218838;
}

.error-msg {
    color: red;
    margin-top: 10px;
    font-weight: bold;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Announcement Styles */
.announcement {
    background-color: #e9f7ef;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    text-align: left;
}

.announcement h2 {
    color: #155724;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.announcement h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    border-bottom: 1px solid #c3e6cb;
    padding-bottom: 5px;
}

.announcement ul {
    padding-left: 20px;
}

.announcement li {
    margin-bottom: 5px;
}