/* Custom Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-section {
    flex: grow;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--si-body-bg);
    color: #000;
}

.dark-mode .hero-section {
    background-color: #000;
    color: #535353;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f4f4f4;
}

.dark-mode .hero-section .overlay {
    background: rgba(255, 255, 255, 0.1);
}

.hero-section .content {
    position: relative;
    z-index: 2;
    color: inherit;
    width: 80%;
    max-width: 100%;
    overflow: auto;
    padding: 20px;
}

.hero-section .form-label {
    color: inherit;
}

.inline-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.domain-table {
    margin-top: 20px;
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
}

.domain-table th, .domain-table td {
    padding: 0.75rem 1.5rem;
    text-align: left;
}

.domain-table th {
    background-color: #f3f4f6;
    font-weight: 600;
    font-size: 0.875rem;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

.domain-table td {
    font-size: 0.875rem;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

.domain-table tbody tr:hover {
    background-color: #f9fafb;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #dadada;
    z-index: 999;
color:  #000;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 0.5rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.navbar-nav {
    --si-nav-link-padding-x: 0;
    --si-nav-link-padding-y: 0.535rem;
    --si-nav-link-font-weight: 600;
    --si-nav-link-color: #888888;
    --si-nav-link-hover-color: var(--si-navbar-hover-color);
    --si-nav-link-disabled-color: #1E90FF;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar {
    background-color: rgba(11, 15, 25, 0);
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 0.5rem 1.25rem rgba(11, 15, 25, 0.1);
}

.cta-overlap {
  margin-bottom: -3rem;
  z-index: 1;
}

.footer-overlap {
  padding-top: 5rem;
}

.message-content code {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
    background-color: #2d2d2d;
    color: #e6e6e6;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    line-height: 1.5;
    display: inline-block;
    margin: 0 2px;
}