/* General Body Styling */
body {
    font-family: Tahoma, sans-serif;
    margin: 20px;
}


table {
    border-collapse: collapse;
    margin-bottom: 30px;
}

th, td {
    border: 2px solid #333; /* Borders */
    padding: 15px;          /* Padding */
}

th {
    background-color: #53cdfc;
}

/* Table Cell Positioning Classes */
.cell-top-left {
    text-align: left;
    vertical-align: top;
    height: 100px;
}

.cell-center {
    text-align: center;
    vertical-align: middle;
}

.cell-bottom-right {
    text-align: right;
    vertical-align: bottom;
    height: 100px;
}

.cell-right {
    text-align: right;
}

/* Image Positioning Classes */
.img-middle {
    vertical-align: middle;
  

}

.img-float-right {
    float: right;
    margin-left: 10px;
  
}

.text-block {
    display: block;
    margin-top: 5px;
}

/* tic tac toe*/
.tic-tac-toe td {
    width: 60px;
    height: 60px;
    text-align: center;     /* Horizontal centering */
    vertical-align: middle; /* Vertical centering */
    font-size: 36px;
    font-weight: bold;
    font-family: sans-serif;
    padding: 0; /* Override general padding for perfect squares */
}

/* styles */
form {
    border: 1px solid #ccc;
    padding: 20px;
    max-width: 400px;
    background-color: #f9f9f9;
}

.form-group {
    margin-bottom: 15px;
}