/* Base styles for the application */
body {
    font-family: Arial, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000000;
    color: #ffffff;
}

.container {
    text-align: center;
}

/* Header styling */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.header h1 {
    margin: 0;
    color: #ffffff;
}

.login-btn {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.login-btn:hover {
    background: #f0f0f0;
    color: #000000;
    transform: translateY(calc(-50% - 1px));
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.4);
}

.login-btn:active {
    transform: translateY(-50%);
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Tab styling */
.tabs {
    margin: 20px 0;
}

.tab {
    padding: 10px 20px;
    margin: 0 5px;
    border: 2px solid #ffffff;
    background-color: #000000;
    color: #ffffff;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.tab:hover {
    background-color: #333333;
}

.tab.active {
    background-color: #ffffff;
    color: #000000;
}

.search-panel {
    display: none;
}

.search-panel.active {
    display: block;
}

/* ANGELAI specific styling */
.ai-blue {
    color: #007bff;
    font-weight: bold;
}
