* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #fefefe;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 100vw;
    margin: auto;
    padding: 0px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffe9d9;
    padding: 10px 20px;
    height: 10vh;
}

.logo img {
    height: 70px;
    width: 173px;
}

.navigation {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #f04e23;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 5px;
}

.nav-link.active {
    border-bottom: 2px solid #f04e23;
    font-weight: 600;
}

.nav-link:hover {
    text-decoration: underline;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon img,
.profile-icon img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

main {
    padding: 20px;
    min-height: 80vh;
    background-color: #fff;
    background-image: url('/Logos/6943.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

.placement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title h3 {
    background-color: orange;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    margin: 0;
}

.filters {
    font-size: 16px;
    color: #666;
    cursor: pointer;
}

.filters:hover {
    color: #f04e23;
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.placement-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.3s;
}

.placement-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.company-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.company-logo {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    font-size: 10px;
    color: #666;
}

.company-header h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    gap: 10px;
}

.detail-item .label {
    font-weight: 500;
    color: #333;
    min-width: 150px;
    font-size: 14px;
}

.detail-item .value {
    color: #666;
    font-size: 14px;
    flex: 1;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.interested-btn {
    background-color: orange;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    flex: 1;
    max-width: 120px;
}

.interested-btn:hover {
    background-color: #f04e23;
}

.ignore-btn {
    background-color: #ccc;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    flex: 1;
    max-width: 120px;
}

.ignore-btn:hover {
    background-color: #bbb;
}

footer {
    margin-bottom: 0px;
    padding: 15px 20px;
    height: 10vh;
    background-color: #ffe9d9;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 70px;
}

.footer-left,
.footer-center,
.footer-right {
    margin-top: 0px;
}

.footer-section p {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-left .social-links img {
    width: 25px;
    margin: 0 5px;
}

.footer-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.footer-center a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.footer-center a:hover {
    color: #f04e23;
}

.footer-right p {
    margin-bottom: 10px;
    font-weight: bold;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.footer-right img {
    width: 100px;
    margin: 5px 5px 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navigation {
        display: none;
    }
    
    header {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    
    .placement-grid {
        grid-template-columns: 1fr;
    }
    
    .placement-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-item .label {
        min-width: auto;
        font-weight: 600;
    }
    
    footer {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    
    .footer-left {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .placement-card {
        padding: 15px;
    }
    
    .company-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .interested-btn,
    .ignore-btn {
        max-width: none;
    }
    
    .user-actions {
        gap: 10px;
    }
}