body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center; /* Center items vertically */
    flex-direction: column; /* Ensure the footer is at the bottom */
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 300px;
    text-align: center;
    margin-top: 20px; /* Add margin to center the container */
    margin-bottom: 20px; /* Add margin to ensure background is visible below the container */
    flex: 1; /* Ensure the container takes up available space */
}

h1 {
    color: #ffffff;
    margin-bottom: 10px;
}

h1 + p {
    font-style: italic;
    margin-bottom: 20px;
}

.tabs {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Add space between buttons */
    margin-bottom: 20px;
}

.tab-button {
    background-color: #333;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px; /* Add border radius for rounded corners */
    transition: background-color 0.3s; /* Add transition for smooth hover effect */
    color: #e0e0e0;
}

.tab-button:hover {
    background-color: #444;
}

.tab-button.active {
    background-color: #ffc107;
    color: #000;
}

.tab-content {
    display: none;
}

.sub-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.sub-tab-button {
    background-color: #444;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    color: #e0e0e0;
    margin: 0 5px;
}

.sub-tab-button:hover {
    background-color: #555;
}

.sub-tab-button.active {
    background-color: #ffc107;
    color: #000;
}

.sub-tab-content {
    display: none;
}

input, select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #2e2e2e;
    color: #e0e0e0;
    margin-bottom: 15px; /* Add margin to space out the inputs */
}

button {
    background-color: #ffc107;
    color: #000;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px; /* Add margin to space out the buttons */
}

button:hover {
    background-color: #e0a800;
}

.bet-item {
    margin-top: 10px;
    padding: 10px;
    background-color: #2e2e2e;
    border-radius: 4px;
}

footer {
    text-align: center;
    padding: 10px;
    color: #e0e0e0;
    width: 100%;
    font-size: 12px;
}

footer a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

.clear-all-button {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #ff0000;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.clear-all-button:hover {
    background-color: #cc0000;
}

/* Add styles for the slip report */
.slip-report-container {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

.slip-report-item {
    background-color: #2e2e2e;
    padding: 10px;
    margin: 5px 0;
    border-radius: 4px;
    color: #e0e0e0;
}

.slip-report-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.slip-report-button {
    background-color: #28a745;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slip-report-button:hover {
    background-color: #218838;
}

.tab-button, .sub-tab-button {
    margin-bottom: 10px;
}

#fibonacciSequenceDisplay {
    margin-top: 10px;
    font-weight: bold;
}

#resetFibonacci {
    background-color: #dc3545;
    margin-top: 10px;
}

#resetFibonacci:hover {
    background-color: #c82333;
}

/* Styles for the 'Create Slip Report' button */
#createSlipReport {
    background-color: #007bff;
    color: #fff;
    margin-bottom: 15px;
}

#createSlipReport:hover {
    background-color: #0069d9;
}


/*
    Add custom styles for the slip report
*/


/* Slip Report Container */
.slip-report-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Slip Report Items */
.slip-report-item {
    display: flex;
    align-items: center;
    background-color: #2e2e2e;
    padding: 10px;
    margin: 5px 0;
    border-radius: 4px;
    cursor: move;
    transition: background-color 0.2s;
}

.slip-report-item.dragging {
    background-color: #444;
    opacity: 0.5;
}

.slip-report-item .content {
    flex-grow: 1;
    color: #e0e0e0;
    outline: none;
    text-align: left; /* Align text to the left */
    font-size: 14px; /* Set a smaller, consistent font size */
}

.slip-report-item .content:focus {
    border-bottom: 1px solid #ffc107;
}

/* Buttons Container */
.buttons-container {
    display: flex;
    align-items: center;
}

/* Delete Button */
.delete-button {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
}

/* Slip Report Buttons */
.slip-report-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.slip-report-buttons button {
    background-color: #28a745;
    color: #fff;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Specific Buttons */
.slip-report-buttons button:nth-child(2) {
    background-color: #ffc107;
    color: #000;
}

/* Search Input */
#slipReportSearch {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    background-color: #2e2e2e;
    border: 1px solid #444;
    border-radius: 4px;
    color: #e0e0e0;
}

/* Text Size Slider */
.text-size-slider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.text-size-slider label {
    color: #e0e0e0;
}

.text-size-slider input[type="range"] {
    flex-grow: 1;
}

/* Separator Line */
.separator {
    border: 0;
    height: 1px;
    background: #444;
    margin: 20px 0;
}

/* Remove hover effect for Delete Button */
.delete-button:hover {
    background-color: transparent;
}

.linkButton {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.linkButton:hover {
    background-color: #0056b3;
}