body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 40px;
    background-color: #f0f2f5;
    display: flex;
}
.dropdown-container {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.content-container {
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.content-container:hover {
    transform: scale(1.05); /* 1.02*/
}

h2 {
    margin-top: 0;
    color: #1a1a1a;
    font-size: 1.5rem;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #4b5563;
    font-size: 0.9rem;
}
p {
    display: block;
    line-height: 1.2;
    color: #4b5563;
    font-size: 1.2rem;
}
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.2s;
}
select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
select:disabled {
    background-color: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}
button {
    width: 100%;
    padding: 14px;
    background-color: #cfcfcf;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    transition: transform 0.2s;
}
button:hover:not(:disabled) {
    transform: scale(1.05);
    background-color: #505050;
}
button:disabled {
    background-color: #000000;
    color: rgb(255, 255, 255);
    cursor: not-allowed;
}

.polaroid-frame {
    background-color: #ffffff;
    /* Top/Sides: 15px | Bottom: 50px */
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 1px solid #e0e0e0;
    /* Give it a slight tilt for character */
    transform: rotate(0deg);
    transition: transform 1s;
    flex-shrink: 0; 
    pointer-events: none;
}

.activate-zone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;  /* Larger hitbox for stability */
    height: 20px; 
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.activate-zone:hover .polaroid-frame {
    position: fixed;     /* Takes it out of the side layout */
    top: 50%;            /* Center Vertically */
    left: 50%;           /* Center Horizontally */
    transform: translate(-50%, -50%) scale(15); /* Move to center and enlarge */
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.5);
    z-index: 9999;       /* Ensure it's above everything else */
}

.activate-zone:hover::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    pointer-events: none;
}

.polaroid-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Optional: subtle inner shadow on the photo */
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #000000;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}