/* Basic styles for image_detail.html */

.image-detail-container {
    max-width: 900px; /* Adjust as needed */
    margin: 20px auto; /* Center the container and add some top/bottom margin */
    padding: 20px;
    background-color: #f9f9f9; /* Light background for the container */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif; /* Or your site's font */
}

.image-detail-header {
    text-align: center;
    margin-bottom: 2px;
    border-bottom: 1px solid #eee;
    padding-bottom: 1px;
}

.image-detail-header h2 {
    margin-top: 0;
    color: #333;
}

.back-link { /* If you add a back link */
    display: inline-block;
    margin-bottom: 15px;
    color: #007bff;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.image-display-area {
    text-align: center; /* Center the image within its container */
    margin-bottom: 20px;
}

.full-size-image {
    max-width: 100%;     /* Ensure image is responsive and doesn't overflow */
    height: auto;        /* Maintain aspect ratio */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.image-info {
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.image-info p {
    margin: 8px 0;
    line-height: 1.6;
    color: #555;
}

.image-info p strong {
    color: #333;
}