html {
  font-size: 20px;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    padding: 1em;
}

: not(: defined) {
    visibility: hidden;
}

fluent - card {
    padding: 16px;
    display: flex;
    flex - direction: column;
}

h2 {
    font - size: var(--type - ramp - plus - 5 - font - size);
    line - height: var(--type - ramp - plus - 5 - line - height);
}

#button {
    align - self: flex - end;
}

#stockno {

}

#assetnumber-button
{
    align - self: flex - end;
}

.centerdiv
{
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
}

.expanddiv {
    display: flex;
    padding-top: 15px;
    padding-bottom: 15px;
    justify-content: space-between;
    font-size: 18px;
}

#stocknumberlbl
{
    align - self: flex - start;
}

/* Rotation Controls for FilePond */
.rotation-controls {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    padding: 4px 6px;
    z-index: 10;
}

.rotation-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 2px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.rotation-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.rotation-btn:active {
    background: rgba(255, 255, 255, 0.3);
}

.rotation-btn svg {
    width: 16px;
    height: 16px;
}


/* Make sure the image preview containers are positioned relatively for absolute positioning of controls */
.filepond--image-preview-wrapper,
.filepond--image-preview,
.filepond--file {
    position: relative;
}

/* Add smooth rotation transition to previews */
.filepond--image-preview {
    transition: transform 0.3s ease;
}

