/* Theme Color Setup */
:root {
    --theme-color: #007bff; /* Match your manifest.json */
    --theme-color-dark: #0056b3; /* Darker shade for hover */
    --text-color: #ffffff;
}

/* Button Styling */
.btn-theme {
    background-color: var(--theme-color);
    color: var(--text-color);
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-theme:hover {
    background-color: var(--theme-color-dark);
    color: #fff;
}
