span.agc-warning {
    background   : #ffc800;
    padding      : 5px;
    border-radius: 7px;
    font-weight  : bold;
}

span.agc-success {
    background   : #8df990;
    padding      : 5px;
    border-radius: 7px;
    font-weight  : bold;
}

span.agc-error {
    background   : #f92727;
    padding      : 5px;
    border-radius: 7px;
    color        : #fff;
    font-weight  : bold;
}

#notification-bar {
    background-color: #ff909080;
    padding: 10px;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 20px;
}

#notification-bar p {
    display: inline;
    margin-left: 20px;
}

#notification-button {
    display: inline;
    background-color: #f00;
    color: #fff;
    padding: 5px 10px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
}

.agcup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.agcup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    animation: agcupAnimation 0.3s ease-out;
    max-width: 500px;
}

@keyframes agcupAnimation {
    0% {
    transform: translate(-50%, -200%);
    }

    100% {
    transform: translate(-50%, -50%);
    }
}

.agc-uploader {
    padding: 30px;
    background: #f1f1f1;
    border-radius: 15px;
}

.agc-doc-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.agc1 {
    margin: 10px;
    background: #fff;
    -webkit-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    padding: 50px;
    border-radius: 10px;
    border-style: solid;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-width: 4px;
    text-align: center;
}

.agc1 button {
    display: block;
    padding: 0 12px 0 12px;
    color: #fff;
    border-radius: 34px;
    margin: 5px;
    font-size: 12px;
    cursor: pointer;
}

.agc-subbutton {
    border-radius: 10px;
    margin-top: 20px;
    color: #fff;
    padding: 10px 15px;
}

.agc-uploader input[type=file],
.agc-uplab {
    width: auto;
    max-width: 100%;
    color: #444;
    padding: 12px 12px 12px 6px;
    background: #fff;
    border-radius: 10px;
    border: 2px solid #bfbfbf;
    text-align: center;
}

.agc-uplab span {
    margin-right: 20px;
    border: none;
    padding: 5px 16px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

.agc-uploader input[type=file]::file-selector-button {
    margin-left: 20px;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

.agc-uploader input[type=file]::file-selector-button:hover {
    background: #0d45a5;
}

.agc-uploader .drop-container {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #555;
    color: #444;
    cursor: pointer;
    transition: background .2s ease-in-out, border .2s ease-in-out;
}

.agc-uploader .drop-container:hover {
    background: #d3d3d3;
    border-color: #111;
}

.agc-uploader .drop-container:hover .drop-title {
    color: #222;
}

.agc-uploader .drop-title {
    color: #444;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: color .2s ease-in-out;
}
#file-upload {
    display: none;
}
.agcup-content p {
    background: #eee;
    margin-top: 10px;
    padding: 20px;
    border-radius: 10px;
}
.agcup-content img {
    border-radius: 10px;
}
.agc-uploader h2{
    color: #f92727;
    font-size: 16px;
}