@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300;400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Mukta', sans-serif; }
body { background-color: #f4f7f6; color: #333; }

/* Header Design */
header { background: #ffffff; padding: 10px 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; border-bottom: 4px solid #FF7E00; }
.logo-container { flex: 1; display: flex; justify-content: flex-start; }
.logo-container a { display: flex; align-items: center; text-decoration: none; }
.logo-container img { height: 50px; margin-right: 10px; }
.logo-container h2 { color: #0056b3; font-size: 24px; font-weight: 700; }

nav { flex: 2; display: flex; justify-content: center; gap: 5px; flex-wrap: wrap; }
nav a { text-decoration: none; color: #444; font-size: 17px; font-weight: 600; padding: 8px 16px; border-radius: 20px; transition: 0.3s; }
nav a:hover { color: #FF7E00; background: #fff3e6; }
nav a.active { background: #FF7E00; color: white; box-shadow: 0 4px 6px rgba(255, 126, 0, 0.2); }

.search-container { flex: 1; display: flex; justify-content: flex-end; position: relative; }
.search-container input { width: 100%; max-width: 250px; padding: 10px 20px 10px 40px; border: 1px solid #ccc; border-radius: 25px; outline: none; font-size: 15px; transition: 0.3s; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); }
.search-container input:focus { border-color: #FF7E00; box-shadow: 0 0 8px rgba(255, 126, 0, 0.3); }
.search-container i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #888; }
.admin-badge { background: #dc3545; color: white !important; border-radius: 20px; padding: 8px 15px; margin-left: 10px; font-size: 14px; }
.admin-badge:hover { background: #c82333; }

.container { max-width: 900px; margin: 30px auto; padding: 0 15px; }

/* List View */
.jobs-list { display: flex; flex-direction: column; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.job-item { display: flex; align-items: center; padding: 15px 0; border-bottom: 2px dashed #ddd; cursor: pointer; transition: 0.3s; }
.job-item:last-child { border-bottom: none; }
.job-item:hover { background: #fafafa; padding-left: 10px; border-left: 4px solid #FF7E00; }
.job-item img { width: 70px; height: 70px; object-fit: contain; border-radius: 50%; border: 1px solid #ddd; margin-right: 20px; background: white; padding: 5px; }
.job-info h3 { font-size: 20px; color: #0056b3; margin-bottom: 5px; font-weight: 700; }
.job-info p { font-size: 15px; color: #555; }
.meta-stats { font-size: 13px; color: #888; margin-top: 8px; display: flex; gap: 15px; }

/* Detail View */
.detail-view { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); position: relative; }
.detail-header { text-align: center; margin-bottom: 20px; }
.detail-header img { width: 120px; height: 120px; object-fit: contain; border-radius: 10px; padding: 5px; border: 1px solid #eee; }
.detail-header h2 { color: #0056b3; font-size: 28px; margin: 15px 0; }
.desc-text { font-size: 17px; line-height: 1.6; color: #333; margin-bottom: 20px; white-space: pre-wrap; text-align: justify; }

/* NEW: Warning Message Design */
.ad-warning-msg { text-align: center; color: #d32f2f; font-weight: 600; font-size: 18px; margin: 25px 0; padding: 12px; background: #fff5f5; border: 2px dashed #d32f2f; border-radius: 8px; }

/* Box Grid (Increased Font Size) */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
.info-box { background: #f8f9fa; border: 1px solid #e9ecef; border-left: 5px solid #FF7E00; padding: 15px; border-radius: 6px; }
.info-box h4 { color: #555; font-size: 16px; margin-bottom: 5px; font-weight: 600; } /* Font increased */
.info-box p { color: #111; font-size: 18px; font-weight: 700; } /* Font increased */

.action-buttons { display: flex; justify-content: center; gap: 20px; margin: 30px 0; flex-wrap: wrap; }
.btn-ad { background: #008CBA; color: white; padding: 12px 30px; font-size: 18px; font-weight: bold; border: none; border-radius: 4px; text-decoration: none; cursor: pointer; box-shadow: 0 4px 6px rgba(0, 140, 186, 0.3); }
.btn-apply { background: #E67E22; color: white; padding: 12px 30px; font-size: 18px; font-weight: bold; border: none; border-radius: 4px; text-decoration: none; cursor: pointer; box-shadow: 0 4px 6px rgba(230, 126, 34, 0.3); }
.share-message { text-align: center; color: #FF0000; font-weight: bold; font-size: 18px; margin: 30px 0; border-top: 1px dashed #ccc; padding-top: 20px; }
.share-icon-btn { position: absolute; bottom: 20px; right: 20px; background: #25D366; color: white; border: none; padding: 10px 20px; border-radius: 50px; font-size: 16px; font-weight: bold; cursor: pointer; display: flex; align-items: center; gap: 8px; }

@media (max-width: 850px) {
    header { flex-direction: column; gap: 15px; padding: 15px; }
    .logo-container, nav, .search-container { justify-content: center; width: 100%; flex: auto; }
    .search-container input { max-width: 100%; }
    .info-grid { grid-template-columns: 1fr; }
}
