/* sticky footer -------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 50px; /* Margin bottom by footer height */
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
}
/*--------------------------------------------------------------*/
/* Logo için */
.navbar-header {
    display: flex;
    align-items: center;
}

.navbar-brand-container {
    display: flex;
    align-items: center;
}

.navbar-logo {
    border-radius: 50%;
    height: 35px;
    margin-right: 10px; /* Adjust as needed */
}

.navbar-brand {
    display: flex;
    align-items: center;
}
/* ---------------------------------------------------- */
code {
    font-size: 80%;
}

.body-content {
    /*padding-left: 25px;
    padding-right: 25px;*/
    margin-top: 50px;
    margin-bottom: 30px;
}

.vertical-row {
    float: left;
    height: 100%;
    width: 1px; /* edit this if you want */
    background-color: black;
}

.btn {
    margin: 5px;
}

td {
    padding: 0;
}

.crossword-container {
    overflow-x: auto;
}

.crossTable {
    border-spacing: 0 !important;
    border-collapse: collapse !important; /*border-collapse: separate;*/
    width: auto;
    table-layout: auto;
    border: none;
}

    .crossTable td {
        text-align: center;
        vertical-align: middle; /* Center content vertically */
        width: 25px !important; /* Fixed width for cells */
        height: 25px !important; /* Set the same value for height to ensure cells are square */
        /*box-sizing: border-box;*/ /* Ensure padding and border are included in the width and height */
    }

/* Small and Medium Devices */
@media (max-width: 768px) {
    .crossTable {
        table-layout: fixed;
        width: 100%;
        /* border-collapse: collapse;
        border-spacing: 0 !important;*/
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
}

@media print {
    .crossTable {
        width: auto; /* Ensure table fits the print area */
    }
}

.char {
    font-family: sans-serif !important; /*font-family: Courier;*/
    color: black !important;
    background-color: #EEEEEE !important; /*background-color: rgb(200, 200, 200);*/
    font-size: 14px !important;
    /*font-weight: bold;*/
    text-transform: uppercase !important;
    border: 1px solid black !important;
    padding: 0 !important;
    /*outline: solid;
    border: thin;
    margin: 1px;*/
    width: 1.75em !important;
    height: 1.75em !important;
    text-align: center !important;
    /*display: flex;*/ /* Flexbox to center the content */
    /*justify-content: center;*/
    /*align-items: center;*/
}

.num {
    font-family: sans-serif; /*font-family: Courier;*/
    color: black;
    background-color: yellow; /*background-color: rgb(200, 200, 200);*/
    font-size: 12px;
    /*font-weight: bold;*/
    border: 0;
    padding: 0;
    /*outline: solid;
    border: thin;
    padding: 1px;
    margin: 1px;*/
    width: 1.75em;
    height: 1.75em;
    text-align: center;
    border-radius: 50%;
    /*display: flex;*/ /* Flexbox to center the content */
    /*justify-content: center;
    align-items: center;*/
}

.charhide {
    visibility: hidden;
}

.inputBox {
    margin: 0;
    padding: 0;
    width: 1.75em !important;
    height: 1.75em !important;
    border: 0;
    text-align: center;
    text-transform: uppercase;
    caret-color: transparent;
    /*box-sizing: border-box;*/
}