/* Event Details Page Styles */

/* Header Styles */
.ui.header {
    color: #333;
    margin-bottom: 1.5rem;
}

/* Segment Styles */
.ui.segment {
    border: 1px solid #ddd;
    box-shadow: none;
    margin-bottom: 2rem;
    padding: 2rem;
}

/* Table Styles */
.ui.table {
    font-size: 1rem;
}

.ui.table td {
    padding: 1rem 0;
}

.ui.table td:first-child {
    font-weight: 600;
    color: #444;
}

/* Pre-formatted Text */
pre.ui.basic.segment {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    font-family: monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Lists */
.ui.bulleted.list .item {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ui.ordered.list .item {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

/* Breadcrumb */
.ui.breadcrumb {
    font-size: 0.9rem;
    display: inline-flex !important;
    align-items: center;
    vertical-align: middle;
}

.ui.breadcrumb .divider {
    margin: 0 0.4em !important;
}

.ui.breadcrumb .active.section {
    color: #666;
}

/* Event Logo */
.ui.fluid.image {
    max-width: 300px;
    margin-bottom: 1rem;
}

/* Action Buttons */
.ui.buttons {
    margin-top: 2rem;
}

.ui.button {
    font-weight: 600;
}

/* Content Sections */
h3 {
    color: #444;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Links */
a.ui.link {
    color: #2185d0;
    text-decoration: none;
}

a.ui.link:hover {
    color: #1678c2;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media only screen and (max-width: 767px) {
    .ui.grid>.column {
        width: 100% !important;
        margin-bottom: 2rem;
    }

    .ui.table td {
        display: block;
        padding: 0.5rem 0;
    }

    .ui.table td:first-child {
        padding-top: 1rem;
    }

    .ui.table td:last-child {
        padding-bottom: 1rem;
        border-bottom: 1px solid #eee;
    }

    .ui.buttons {
        display: flex;
        flex-direction: column;
    }

    .ui.button {
        margin: 0.5rem 0 !important;
    }
}

.ui.container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.ui.grid {
    margin-top: 1rem;
}

.ui.definition.table {
    margin-bottom: 2rem;
}

.ui.definition.table td:first-child {
    font-weight: bold;
    width: 25%;
}

h3.ui.header {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}