body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.tab-container {
    margin: 20px;
}

.tab-buttons {
    overflow: hidden;
    border-bottom: 1px solid #e44e13;
}

.tab-link {
    background-color: #f9f9f9;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 20px;
    transition: 0.3s;
    font-size: 16px;
    color: #e44e13;
}

.tab-link:hover {
    background-color: #ddd;
}

.tab-link.active {
    background-color: #e44e13;
    color: white;
}

.tab-content {
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.spire10header {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.spire10header h1 {
    margin: 0;
    color: #e44e13;
    font-weight: bold;
}

.spire10header h3 {
    color: #e44e13;
    font-weight: normal;
}
.spire10header h4 {
    
    font-weight: normal;
}

.schedule-title {
    color: #f5a583; /* Lighter shade of #e44e13 */
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.event-table thead {
    background-color: #e44e13; /* Lighter shade of #e44e13 */
}

.event-header {
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    border-bottom: 4px solid #e1b713;/* 2px solid #f5a583; Original color for accent */
}

.event-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.event-item:hover {
    background-color: #f9e8e3; /* Light hover effect */
}

.lighter-event-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    background-color: #fef2ef; /* Very light shade for the last row */
}

.live-event {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.live-btn, .watch-btn {
    background-color: #974a2b;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}

.live-btn:hover, .watch-btn:hover {
    background-color: #df9477;
}

.talk {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.talk img {
    width: 100px;
    height: auto;
    margin-right: 10px;
}
.spire10text{
    color: #e44e13;
}
.boxupdates-spire10 {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }
  
  .boxupdates-spire10:hover {
    /* transform: translateY(-3px); */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .boxupdates-spire10 p {
    margin: 0;
    font-size: 16px;
    color: #333;
  }
  
  .boxupdates-spire10 span {
    font-style: italic;
    color: #777;
    display: block;
    margin-top: 5px;
    font-size: 14px;
  }