/* Reset some default browser styles */
body, h1, h2, h3, h4, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}


.clickable-div {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #333;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.clickable-div:hover {
    background-color: #ccc;
}


.menu {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #333;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.menu:hover {
    background-color: #ccc;
}

/* Flexbox utility classes */
.row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.center {
    justify-content: center;
    align-items: center;
}

.start {
    justify-content: flex-start;
    align-items: flex-start;
}

.end {
    justify-content: flex-end;
    align-items: flex-end;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.subtitle {
    font-size: 0.875rem;
    color: #666;
}

.clickable-text {
    color: #007bff;
    cursor: pointer;
}

/* File upload input */
.file-upload {
    width: calc(100% - 2.2rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
    border: 2px dashed #ccc;
    border-radius: 0.25rem;
    background-color: #fff;
    cursor: pointer;
}

.file-upload input[type="file"] {
    display: none;
}

/* Short and long text input fields */
.input-field {
    width: calc(100% - 2.2rem);
    padding: 0.5rem 1rem;
    border: 0.1rem solid #ccc;
    border-radius: 0.2rem;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.input-field:focus {
    border-color: #007bff;
    outline: none;
}


/* Container styling for demonstration */
.container {
    margin: 0 auto;
    padding: 3rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

.table th {
    background-color: #f4f4f4;
}

.modal {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
}