/* General Styles */
body {
    background-color: #f8f9fa;
}

/* Login Page */
.card {
    border: none;
    border-radius: 10px;
}

.card-body {
    padding: 2rem;
}

/* Dashboard */
.navbar {
    margin-bottom: 2rem;
}

#editor, #editEditor {
    background-color: white;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.ql-toolbar {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.ql-container {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    min-height: 200px;
}

/* Blog Cards */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Modal */
.modal-content {
    border-radius: 10px;
}

/* Form Elements */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Image Preview */
#imagePreview, #editImagePreview {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Buttons */
.btn {
    padding: 0.5rem 1.5rem;
}

/* Alert Messages */
.alert {
    border-radius: 4px;
    margin-top: 1rem;
}
