body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.form-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.heading {
    color: #859d79;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}
.btn-primary {
    background-color: #859d79;
    border-color: #859d79;
}
.btn-primary:hover {
    background-color: #4a3144;
    border-color: #4a3144;
}
.btn-success {
    background-color: #25D366;
    border-color: #25D366;
}
.btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}
.share-actions {
    transition: all 0.3s;
}
.table-hover tbody tr:hover {
    background-color: #f8f4f7;
}
.form-label {
    font-weight: 500;
    color: #333;
}
.template-option {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.template-option:hover, .template-option.selected {
    border-color: #859d79;
    background-color: #f8f4f7;
}
.template-option.selected {
    box-shadow: 0 0 0 3px rgba(92, 61, 83, 0.25);
}
.preview-container {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}
.note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}
#previewText {
    white-space: pre-wrap;
}
.file-input {
    position: relative;
}
.file-input input {
    position: relative;
    z-index: 2;
    opacity: 0;
    width: 100%;
    height: 40px;
}
.file-input-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: 40px;
    padding: 8px 16px;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pagination .page-item.active .page-link {
    background-color: #859d79;
    border-color: #859d79;
}
.pagination .page-item .page-link {
    color: #859d79;
}
.pagination .page-item.active .page-link {
    background-color: #859d79;
    border-color: #859d79;
    color: white;
}
#jumpPageWrapper input {
    text-align: center;
}
.btn-outline-primary {
    color: #859d79;
    background-color: transparent;
    border: 1px solid #859d79;
}

.btn-outline-primary:hover {
    color: white;
    background-color: #859d79;
    border-color: #859d79;
}
