:root {
    --primary-color: #2e7d32; /* Professional Green */
    --light-green: #e8f5e9;
    --text-dark: #333;
    --text-light: #666;
    --bg-color: #f9f9f9;
    --white: #ffffff;
    --border-radius: 8px;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-dark);
}

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

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo {
    font-weight: 700;
    font-size: 24px;
    color: var(--text-dark);
    display: inline-block;
}

.dot { color: var(--primary-color); }

.search-box {
    float: right;
}

.search-box input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-box button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* Breadcrumbs */
.breadcrumb {
    padding: 15px 0;
    list-style: none;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb-item {
    display: inline;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 8px;
    color: #ccc;
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--primary-color);
}

/* Main Content */
.main-content {
    padding-top: 20px;
    padding-bottom: 50px;
}

h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
}

/* Prayer Card */
.prayer-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.prayer-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.prayer-row:last-child { border-bottom: none; }

.prayer-row.header {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.prayer-row.sunrise {
    background: var(--light-green);
    color: var(--text-light);
    font-size: 0.9em;
}

.time {
    font-weight: 700;
    font-family: monospace;
    font-size: 1.1em;
}

/* Settings */
.settings-panel {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
}

.settings-panel h3 { margin-top: 0; font-size: 18px; }

select {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: var(--white);
}

footer {
    text-align: center;
    padding: 20px;
    color: var(--text-light);
    font-size: 12px;
}

@media (max-width: 600px) {
    .search-box { float: none; margin-top: 15px; display: flex; }
    .search-box input { flex-grow: 1; margin-right: 5px;}
}
