@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap');

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

body {
    font-family: 'Karla', sans-serif;
    line-height: 1.6;
    background: #f5f5f5;
    color: #333;
}

/* Frontend Styles */
.gallery {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.entry {
    background: white;
    margin-bottom: 20px;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 2em;
}

.entry-title {
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    font-size: 1.8em;
    margin: 20px 20px 10px 20px;
    color: #2c3e50;
}

.entry-content {
    margin: 0 20px 15px 20px;
    line-height: 1.5;
    font-size: 1.1em;
}

.entry-prompt {
    font-family: serif;
    font-size: 0.7em;
    color: #888;
    font-style: italic;
    margin: 5px 20px 20px 20px;
}

.info{

 
padding-left:33%;


}

.entry-images {
    display: flex;
    gap:0%;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.entry-image {
    width: 32.9%;
    height: 70vh;
    object-fit: cover;
    display: block;
}

.entry-divider {
    border: none;
    border-top: 2px dotted #ccc;
    margin: 30px 0;
    width: 100%;
}

/* Backend Styles (unchanged) */
.admin-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.admin-form {
    background: white;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Karla', sans-serif;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.btn {
    background: #2c3e50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Karla', sans-serif;
}

.btn-danger {
    background: #e74c3c;
}

.entries-list {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.entry-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: between;
    align-items: center;
}

.entry-item:last-child {
    border-bottom: none;
}

.entry-actions {
    margin-left: auto;
}

.entry-actions .btn {
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .entry-images {
        flex-direction: column;
        gap: 10px;
    }
    
    .entry-image {
        width: 100%;
        height: 50vh;
    }
    
    .gallery {
        padding: 10px;
    }
}
