/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
}

.no-underline {
  text-decoration: none;
}


.sidebar {
    width: 200px;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
}


.sidebar h2 {
    text-align: center;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
}




.content {
    flex: 1;
    padding: 20px;
}

table {
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    /* text-align: left; */
}

th {
    background-color: #f4f4f4;
}



.content {
    flex: 1;
    padding: 20px;
}

form {
    max-width: 600px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

label {
    display: block;
    margin-top: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}




/* Button Styling */
.button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #1a252f;
}

.button:active {
    background-color: #0e161f;
}


/* Delete Button Styling */
.delete-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: red;
    transition: color 0.3s ease;
}

.delete-button:hover {
    color: darkred;
}


.splash-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.splash-content {
    max-width: 500px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}


/* styles.css */
.prompt-block {
    padding: 20px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    width: 80%;
    margin: 20px auto;
    text-align: left;
}


.speech-display {
    background-color: #f4f4f4;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    width: 80%;
    margin: 20px auto;
}

.basic-table
{
    background: #000;
}

.basic-table tr
{
    background: #fff;
}

/* Default: center-aligned cells and headers */
.basic-table th,
.basic-table td
{
    text-align: center;
}

/* Left-aligned cell modifier */
.basic-table td.goleft,
.basic-table td.left-align {
    text-align: left;
}

/* Left-aligned header modifier */
.basic-table th.left-align {
    text-align: left;
}

/* Right-aligned cell modifier */
.basic-table td.right-align {
    text-align: right;
}

/* Right-aligned header modifier */
.basic-table th.right-align {
    text-align: right;
}

/* Compact log table styling */
.log-table {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
}

.log-table th,
.log-table td {
    padding: 4px 8px;
}

.log-table th {
    font-weight: bold;
}




/*
Big Button
*/
.css3button
{
    font-family:Arial,Helvetica,sans-serif;
    font-size:14px;
    color:#fff;
    padding:10px 20px;
    margin-left:0;
    margin-right:3px;
    text-decoration:none;
    background:-moz-linear-gradient(top,#38d 0,#16b);
    background:-webkit-gradient(linear,left top,left bottom,from(#38d),to(#16b));
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
    border:1px solid #16b;
    -moz-box-shadow:0 0 0 rgba(000,000,000,0),inset 0 0 2px rgba(255,255,255,1);
    -webkit-box-shadow:0 0 0 rgba(000,000,000,0),inset 0 0 2px rgba(255,255,255,1);
    box-shadow:0 0 0 rgba(000,000,000,0),inset 0 0 2px rgba(255,255,255,1);
    text-shadow:0 1px 0 rgba(025,084,167,1),0px 0 0 rgba(255,255,255,0);
    background-color:#16B
}


/* New Oct 2025 approach to modal creation */
.smart-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.smart-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


