/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

header .logo h1 a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px; /* Add some margin */
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-right: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

header nav ul li a:hover {
    text-decoration: underline;
}

main {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.recent-requests h2 {
    margin-bottom: 15px;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background: #333;
    color: #fff;
}

/* Request View Styles */
.request-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.request-details h2 {
    margin-bottom: 20px;
    color: #333;
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    margin-bottom: 20px;
}

.status-badge.open {
    background-color: #e74c3c;
    color: white;
}

.status-badge.closed {
    background-color: #2ecc71;
    color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.info-item {
    line-height: 1.6;
}

.info-item strong {
    color: #666;
}

.photos-section {
    margin-bottom: 30px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.activities-section {
    margin-bottom: 30px;
}

.activities-section h3 {
    margin-bottom: 15px;
    color: #333;
}

.activities-list {
    margin-top: 15px;
    padding-left: 40px;
}

.activity-item {
    position: relative;
    margin-bottom: 20px;
    line-height: 1.8;
}

.activity-item::before {
    content: "•";
    position: absolute;
    left: -20px;
    color: #333;
    font-size: 1.2em;
}

.activity-header {
    margin-bottom: 5px;
    font-size: 1em;
}

.activity-header strong {
    color: #333;
}

.activity-status {
    color: #666;
    font-weight: normal;
}

.activity-date {
    color: #666;
    font-weight: normal;
}

.activity-outcome {
    color: #333;
    margin: 5px 0;
    padding-left: 0;
}

.activity-comments {
    color: #333;
    margin: 5px 0;
    padding-left: 0;
    line-height: 1.6;
}

.additional-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.additional-details pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 0.9em;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
}

/* Add more specific styles as needed */ 