/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.csf-footer .csf-buttons{
    display: none;
}

.layout-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.layout-item {
    position: relative;
    text-align: center;
    margin: 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    transition: transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.layout-item:hover {
    transform: scale(1.05);
}

.layout-item img {
    width: 300px;
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 199px;
    object-fit: cover;
}

.layout-item label {
    display: block;
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.onepage-layout {
    margin-right: 10px;
}

.csf-footer .csf-copyright{
	display: none;
}

.whmcs-envato-code{
	font-size: 13px !important;
	padding: 2px 10px !important;
	width: auto !important;
	margin-left: 13px !important;
}

.validate-success {
	color: green;
	padding: 20px 30px;
	font-weight: 600;
	background: #def0d8;
}
.validate-error {
	color: red;
	padding: 20px 30px;
	font-weight: 600;
	background: #ed6f6f;
}

.whmcs-notices {
	width: 81%;
	float: right;
}

.whmcs-adtnl-btn {
    font-size: 13px !important;
    padding: 2px 10px !important;
    width: auto !important;
    margin-right: 13px !important;
    margin-top: 13px !important;
}

.opc-loader {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    margin-left: 10px; /* Adjust space between button and loader */
}

@media screen and (max-width: 1500px){
	.layout-container {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
 
@media screen and (max-width: 1140px){
	.layout-container {
		display: grid !important;
		grid-template-columns: repeat(1, 1fr) !important;
	}
}

@keyframes spin {
    to { transform: rotate(360deg); }
}