* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f0f2f5;
    color: #1a1a1a;
    padding-bottom: 70px; /* Space for bottom nav */
}

/* Header */
.app-header {
    background-color: #ffffff;
    padding: 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e4e6eb;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.app-container {
    padding: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grids for Desktop */
.feed-grid {
    display: grid;
    gap: 16px;
}
@media (min-width: 768px) {
    .feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .feed-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cards */
.job-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 16px;
}
.whatsapp-btn {
    display: block;
    text-align: center;
    background-color: #25D366;
    color: white;
    padding: 12px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 16px;
}

/* Forms */
.form-container {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f9f9f9;
}
.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    border-top: 1px solid #eaeaea;
    z-index: 1000;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 0.75rem;
    flex: 1;
}
.nav-item .icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}
.nav-item.active {
    color: #1a73e8;
    font-weight: bold;
}

.text-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Eski nesil tarayıcılar (Chrome/Safari) için */
    line-clamp: 2;         /* Yeni standart kural */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}