﻿.error {
    color: darkred;
    border-color: darkred;
}
.upload-between-image-container {
    position: relative;
    text-align: center;
    color: black;
}
.upload-between-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.capture-width {
    width: 409px;
}
.dot-red {
    height: 25px;
    width: 25px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
}
.dot-yellow {
    height: 25px;
    width: 25px;
    background-color: yellow;
    border-radius: 50%;
    display: inline-block;
}
.dot-green {
    height: 25px;
    width: 25px;
    background-color: green;
    border-radius: 50%;
    display: inline-block;
}
.btn-xs {
    padding: 0.1rem 0.2rem;
    font-size: 0.54375rem;
    line-height: 1.5;
    -webkit-border-radius: 0.2rem;
    border-radius: 0.2rem;
}
.invoice-dropdown {
    position: relative;
    display: inline-block;
}

/* Button or menu title */
.invoice-dropdown-btn {
   /* padding: 10px 15px;*/
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Dropdown menu (hidden by default) */
.invoice-dropdown-menu {
    display: none;
    position: absolute;
  /*  min-width: 150px;*/
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    z-index: 10;
}

    /* Menu items */
    .invoice-dropdown-menu a {
        display: block;
      /*  padding: 10px;*/
        text-decoration: none;
        color: black;
        transition: background 0.3s;
    }

        .invoice-dropdown-menu a:hover {
            background-color: #f1f1f1;
        }

/* Show menu when hovering */
.invoice-dropdown:hover .invoice-dropdown-menu {
    display: block;
}
             