/* Custom styles for One-Time Share */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.content-text {
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
}

.card {
    margin-bottom: 1.5rem;
}

.badge {
    font-size: 0.875rem;
}

footer {
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
}

